home *** CD-ROM | disk | FTP | other *** search
/ START Magazine / START VOL 4 NO 1.st / STUMBLE.ARC / STUMBLE.LST next >
Encoding:
File List  |  1985-11-20  |  65.6 KB  |  3,071 lines

  1. Dim Shape$(12,8),Mask$(12,8)
  2. Dim Flip(8),Twist(8),Rotate_right(8),Rotate_left(8)
  3. Clean_up=Fre(Dummy)
  4. '
  5. '        <<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>>
  6. '        <<                                                >>
  7. '        << PENTA-SQUARES Begun on the 26th September 1987 >>
  8. '        <<                                                >>
  9. '        << Changed to Stumbling Blocks 28th November 1987 >>
  10. '        <<                                                >>
  11. '        <<     512k version finished 5th December 1987    >>
  12. '        <<                                                >>
  13. '        <<              By Mark Annetts                   >>
  14. '        <<      Copyright 1989 Antic Publishing           >>
  15. '        <<                                                >>
  16. '        <<      Deprotected version 3rd March 1989        >>
  17. '        <<                                                >>
  18. '        <<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>
  19. '
  20. @Start_up_1                             ! Set up alternate screens
  21. '
  22. Rez=Xbios(4)                            ! Make sure we are
  23. If Rez<>0                               !     in low
  24.   @Not_low                              !   resolution
  25. Endif                                   !      only
  26. '
  27. If Exist("*.*")
  28. Endif
  29. @Check_for_files
  30. @Save_pal
  31. @Title_loader                           ! Put pretty piccy on screen
  32. @Start_up_2                             ! Get everything off the disk
  33. @Initialise_arrays                      ! set up flip, twist & rotate arrays
  34. @Initialise_squares                     ! Set all shapes to No 1
  35. '
  36. @Put_squares_on_screen                  ! Put all shapes in their boxes
  37. '
  38. Bmove Screen0%,Screen1%,32000           !  Show screen
  39. Void Xbios(5,L:Screen1%,L:Screen1%,-1)  !    at last
  40. Defmouse 0
  41. '                           ________________________
  42. Do           !   -------===< | START OF MAIN LOOP | >===-------
  43.   '                         ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  44.   @Check_completed
  45.   '
  46.   Do
  47.     Pause 5
  48.     Key$=Inkey$
  49.     Mouse A,B,C
  50.     Exit If C=1 Or C=2
  51.     Exit If Key$="Q" Or Key$="q"
  52.   Loop
  53.   '
  54.   If Key$="q" Or Key$="Q"
  55.     Alert 2," | Are you sure| you want to go?",1," Quit | Stay ",What
  56.     If What=1
  57.       Void Xbios(5,L:Oscreen%,L:Oscreen%,-1)
  58.       @Restore_pal
  59.       End
  60.     Else
  61.     Endif
  62.   Endif
  63.   '
  64.   ' *************************** READ BUTTONS *********************************
  65.   '
  66.   If (A>271 And B>68) And (A<314 And B<84)
  67.     If Square_lit=True
  68.       Put 271,70,Happy$,3
  69.       Pause 5
  70.       Square_lit=False
  71.       Gosub Replace_square(Squarea,Squareb)
  72.       Put 271,70,Happy1$,3
  73.     Endif
  74.   Endif
  75.   '
  76.   If (A>271 And B>45) And (A<314 And B<60)
  77.     If Square_lit=True
  78.       Put 271,45,Twist$,3
  79.       Pause 5
  80.       Y=Twist(Y)
  81.       Gosub Determine_present_twist
  82.       Gosub Replace_square(Squarea,Squareb)
  83.       Put 271,45,Twist1$,3
  84.     Endif
  85.   Endif
  86.   '
  87.   If (A>271 And B>24) And (A<314 And B<38)
  88.     If Square_lit=True
  89.       Put 271,24,Flip$,3
  90.       Pause 5
  91.       Y=Flip(Y)
  92.       Gosub Determine_present_flip
  93.       Gosub Replace_square(Squarea,Squareb)
  94.       Put 271,24,Flip1$,3
  95.     Endif
  96.   Endif
  97.   '
  98.   If (A>271 And B>2) And (A<314 And B<16)
  99.     If Square_lit=True
  100.       Put 271,2,Rotate$,3
  101.       Pause 5
  102.       Gosub Determine_present_rotation
  103.       Gosub Replace_square(Squarea,Squareb)
  104.       Put 271,2,Rotate1$,3
  105.     Endif
  106.   Endif
  107.   '
  108.   ' *************************** READ GRID BUTTONS ****************************
  109.   '
  110.   If (A>4 And B>2) And (A<47 And B<12)
  111.     Put 4,2,B320$,3
  112.     Pause 5
  113.     Put 4,2,B3201$,3
  114.     Alert 2," Are you sure ?| | This will reset the| present game !!",1," Do it | Cancel ",Z
  115.     If Z=1
  116.       Grid=1
  117.       Void Xbios(5,L:Screen0%,L:-1,-1)
  118.       Sput Blank$
  119.       Put 73,0,Title_horiz$,3
  120.       Put 58,41,Grid320$,3
  121.       Gosub Put_squares_on_screen
  122.       Gosub Initialise_squares
  123.       Gosub Make_false
  124.     Endif
  125.   Endif
  126.   '
  127.   If (A>4 And B>20) And (A<47 And B<30)
  128.     Put 4,20,B415$,3
  129.     Pause 5
  130.     Put 4,20,B4151$,3
  131.     Alert 2," Are you sure ?| | This will reset the| present game !!",1," Do it | Cancel ",Z
  132.     If Z=1
  133.       Grid=2
  134.       Void Xbios(5,L:Screen0%,L:-1,-1)
  135.       Sput Blank$
  136.       Put 73,0,Title_horiz$,3
  137.       Put 84,36,Grid415$,3
  138.       Gosub Put_squares_on_screen
  139.       Gosub Initialise_squares
  140.       Gosub Make_false
  141.     Endif
  142.   Endif
  143.   '
  144.   If (A>4 And B>38) And (A<47 And B<48)
  145.     Put 4,38,B512$,3
  146.     Pause 5
  147.     Put 4,38,B5121$,3
  148.     Alert 2," Are you sure ?| | This will reset the| present game !!",1," Do it | Cancel ",Z
  149.     If Z=1
  150.       Grid=3
  151.       Void Xbios(5,L:Screen0%,L:-1,-1)
  152.       Sput Blank$
  153.       Put 73,0,Title_horiz$,3
  154.       Put 98,30,Grid512$,3
  155.       Gosub Put_squares_on_screen
  156.       Gosub Initialise_squares
  157.       Gosub Make_false
  158.     Endif
  159.   Endif
  160.   '
  161.   If (A>4 And B>57) And (A<47 And B<67)
  162.     Put 4,57,B610$,3
  163.     Pause 5
  164.     Put 4,57,B6101$,3
  165.     Alert 2," Are you sure ?| | This will reset the| present game !!",1," Do it | Cancel ",Z
  166.     If Z=1
  167.       Grid=4
  168.       Void Xbios(5,L:Screen0%,L:-1,-1)
  169.       Sput Blank$
  170.       Put 73,0,Title_horiz$,3
  171.       Put 108,25,Grid610$,3
  172.       Gosub Put_squares_on_screen
  173.       Gosub Initialise_squares
  174.       Gosub Make_false
  175.     Endif
  176.   Endif
  177.   '
  178.   If (A>4 And B>75) And (A<47 And B<85)
  179.     Put 4,75,B88$,3
  180.     Pause 5
  181.     Put 4,75,B881$,3
  182.     Alert 2," Are you sure ?| | This will reset the| present game !!",1," Do it | Cancel ",Z
  183.     If Z=1
  184.       Grid=5
  185.       Black_bits=0
  186.       Void Xbios(5,L:Screen0%,L:-1,-1)
  187.       Sput Blank$
  188.       Put 220,0,Title_virt$,3
  189.       Put 75,6,Which_88$,3
  190.       Put 118,4,Grid88$,3
  191.       Gosub Put_squares_on_screen
  192.       Gosub Initialise_squares
  193.       Gosub Make_false
  194.     Endif
  195.   Endif
  196.   '
  197.   If Grid=5
  198.     If (A>75 And B>6) And (A<91 And B<22)
  199.       Alert 2," Are you sure ?| | This will reset the| present game !!",1," Do it | Cancel ",Z
  200.       If Z=1
  201.         Grid=5
  202.         Black_bits=1
  203.         Void Xbios(5,L:Screen0%,L:-1,-1)
  204.         Sput Blank$
  205.         Put 220,0,Title_virt$,3
  206.         Put 75,6,Which_88$,3
  207.         Put 118,4,Grid88$,3
  208.         Deffill 1,2,8
  209.         Fill 121,7
  210.         Fill 191,7
  211.         Fill 121,77
  212.         Fill 191,77
  213.         Gosub Put_squares_on_screen
  214.         Gosub Initialise_squares
  215.         Gosub Make_false
  216.       Endif
  217.     Endif
  218.   Endif
  219.   '
  220.   If Grid=5
  221.     If (A>75 And B>27) And (A<91 And B<43)
  222.       Alert 2," Are you sure ?| | This will reset the| present game !!",1," Do it | Cancel ",Z
  223.       If Z=1
  224.         Grid=5
  225.         Black_bits=2
  226.         Void Xbios(5,L:Screen0%,L:-1,-1)
  227.         Sput Blank$
  228.         Put 220,0,Title_virt$,3
  229.         Put 75,6,Which_88$,3
  230.         Put 118,4,Grid88$,3
  231.         Deffill 1,2,8
  232.         Fill 131,17
  233.         Fill 181,17
  234.         Fill 131,67
  235.         Fill 181,67
  236.         Gosub Put_squares_on_screen
  237.         Gosub Initialise_squares
  238.         Gosub Make_false
  239.       Endif
  240.     Endif
  241.   Endif
  242.   '
  243.   If Grid=5
  244.     If (A>75 And B>48) And (A<91 And B<64)
  245.       Alert 2," Are you sure ?| | This will reset the| present game !!",1," Do it | Cancel ",Z
  246.       If Z=1
  247.         Grid=5
  248.         Black_bits=3
  249.         Void Xbios(5,L:Screen0%,L:-1,-1)
  250.         Sput Blank$
  251.         Put 220,0,Title_virt$,3
  252.         Put 75,6,Which_88$,3
  253.         Put 118,4,Grid88$,3
  254.         Deffill 1,2,8
  255.         Fill 141,27
  256.         Fill 171,27
  257.         Fill 141,57
  258.         Fill 171,57
  259.         Gosub Put_squares_on_screen
  260.         Gosub Initialise_squares
  261.         Gosub Make_false
  262.       Endif
  263.     Endif
  264.   Endif
  265.   '
  266.   If Grid=5
  267.     If (A>75 And B>69) And (A<91 And B<85)
  268.       Alert 2," Are you sure ?| | This will reset the| present game !!",1," Do it | Cancel ",Z
  269.       If Z=1
  270.         Grid=5
  271.         Black_bits=4
  272.         Void Xbios(5,L:Screen0%,L:-1,-1)
  273.         Sput Blank$
  274.         Put 220,0,Title_virt$,3
  275.         Put 75,6,Which_88$,3
  276.         Put 118,4,Grid88$,3
  277.         Deffill 1,2,8
  278.         Fill 151,37
  279.         Fill 161,37
  280.         Fill 151,47
  281.         Fill 161,47
  282.         Gosub Put_squares_on_screen
  283.         Gosub Initialise_squares
  284.         Gosub Make_false
  285.       Endif
  286.     Endif
  287.   Endif
  288.   '
  289.   ' **************************** READ SQUARES ********************************
  290.   '
  291.   If (A>0 And B>92) And (A<53 And B<145)
  292.     If Square_lit=False
  293.       Tempza=0
  294.       Tempzb=92
  295.       Squarea=0
  296.       Squareb=92
  297.       X=3
  298.       Y=Present_z
  299.       If Used_z=False
  300.         If C=2
  301.           Square_lit=True
  302.           Void Xbios(5,L:Screen0%,L:-1,-1)
  303.           Deffill 1,0,0
  304.           Pbox 0,92,53,145
  305.           Gosub Replace_square(Tempza,Tempzb)
  306.           Bmove Screen0%,Screen1%,32000
  307.           Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  308.         Endif
  309.         If C=1
  310.           Pause 5
  311.           Used_z=True
  312.           Void Xbios(5,L:Screen0%,L:-1,-1)
  313.           Put 0,92,Blanksquare$,3
  314.           Bmove Screen0%,Screen1%,32000
  315.           Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  316.           Gosub Make_it_move(X,Present_z)
  317.         Endif
  318.       Endif
  319.     Endif
  320.   Endif
  321.   '
  322.   If (A>53 And B>92) And (A<106 And B<145)
  323.     If Square_lit=False
  324.       Tempua=53
  325.       Tempub=92
  326.       Squarea=53
  327.       Squareb=92
  328.       X=2
  329.       Y=Present_u
  330.       If Used_u=False
  331.         If C=2
  332.           Square_lit=True
  333.           Void Xbios(5,L:Screen0%,L:-1,-1)
  334.           Deffill 1,0,0
  335.           Pbox 53,92,106,145
  336.           Gosub Replace_square(Tempua,Tempub)
  337.           Bmove Screen0%,Screen1%,32000
  338.           Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  339.         Endif
  340.         If C=1
  341.           Pause 5
  342.           Used_u=True
  343.           Void Xbios(5,L:Screen0%,L:-1,-1)
  344.           Put 53,92,Blanksquare$,3
  345.           Bmove Screen0%,Screen1%,32000
  346.           Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  347.           Gosub Make_it_move(X,Present_u)
  348.         Endif
  349.       Endif
  350.     Endif
  351.   Endif
  352.   '
  353.   If (A>106 And B>92) And (A<159 And B<145)
  354.     If Square_lit=False
  355.       Temppa=106
  356.       Temppb=92
  357.       Squarea=106
  358.       Squareb=92
  359.       X=4
  360.       Y=Present_p
  361.       If Used_p=False
  362.         If C=2
  363.           Square_lit=True
  364.           Void Xbios(5,L:Screen0%,L:-1,-1)
  365.           Deffill 1,0,0
  366.           Pbox 106,92,159,145
  367.           Gosub Replace_square(Temppa,Temppb)
  368.           Bmove Screen0%,Screen1%,32000
  369.           Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  370.         Endif
  371.         If C=1
  372.           Pause 5
  373.           Used_p=True
  374.           Void Xbios(5,L:Screen0%,L:-1,-1)
  375.           Put 106,92,Blanksquare$,3
  376.           Bmove Screen0%,Screen1%,32000
  377.           Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  378.           Gosub Make_it_move(X,Present_p)
  379.         Endif
  380.       Endif
  381.     Endif
  382.   Endif
  383.   '
  384.   If (A>159 And B>92) And (A<212 And B<145)
  385.     If Square_lit=False
  386.       Tempwa=159
  387.       Tempwb=92
  388.       Squarea=159
  389.       Squareb=92
  390.       X=5
  391.       Y=Present_w
  392.       If Used_w=False
  393.         If C=2
  394.           Square_lit=True
  395.           Void Xbios(5,L:Screen0%,L:-1,-1)
  396.           Deffill 1,0,0
  397.           Pbox 159,92,212,145
  398.           Gosub Replace_square(Tempwa,Tempwb)
  399.           Bmove Screen0%,Screen1%,32000
  400.           Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  401.         Endif
  402.         If C=1
  403.           Pause 5
  404.           Used_w=True
  405.           Void Xbios(5,L:Screen0%,L:-1,-1)
  406.           Put 159,92,Blanksquare$,3
  407.           Bmove Screen0%,Screen1%,32000
  408.           Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  409.           Gosub Make_it_move(X,Present_w)
  410.         Endif
  411.       Endif
  412.     Endif
  413.   Endif
  414.   '
  415.   If (A>212 And B>92) And (A<265 And B<145)
  416.     If Square_lit=False
  417.       Tempxa=212
  418.       Tempxb=92
  419.       Squarea=212
  420.       Squareb=92
  421.       X=7
  422.       Y=Present_x
  423.       If Used_x=False
  424.         If C=2
  425.           Square_lit=True
  426.           Void Xbios(5,L:Screen0%,L:-1,-1)
  427.           Deffill 1,0,0
  428.           Pbox 212,92,265,145
  429.           Gosub Replace_square(Tempxa,Tempxb)
  430.           Bmove Screen0%,Screen1%,32000
  431.           Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  432.         Endif
  433.         If C=1
  434.           Pause 5
  435.           Used_x=True
  436.           Void Xbios(5,L:Screen0%,L:-1,-1)
  437.           Put 212,92,Blanksquare$,3
  438.           Bmove Screen0%,Screen1%,32000
  439.           Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  440.           Gosub Make_it_move(X,Present_x)
  441.         Endif
  442.       Endif
  443.     Endif
  444.   Endif
  445.   '
  446.   If (A>265 And B>92) And (A<318 And B<145)
  447.     If Square_lit=False
  448.       Tempta=265
  449.       Temptb=92
  450.       Squarea=265
  451.       Squareb=92
  452.       X=1
  453.       Y=Present_t
  454.       If Used_t=False
  455.         If C=2
  456.           Square_lit=True
  457.           Void Xbios(5,L:Screen0%,L:-1,-1)
  458.           Deffill 1,0,0
  459.           Pbox 265,92,318,145
  460.           Gosub Replace_square(Tempta,Temptb)
  461.           Bmove Screen0%,Screen1%,32000
  462.           Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  463.         Endif
  464.         If C=1
  465.           Pause 5
  466.           Used_t=True
  467.           Void Xbios(5,L:Screen0%,L:-1,-1)
  468.           Put 265,92,Blanksquare$,3
  469.           Bmove Screen0%,Screen1%,32000
  470.           Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  471.           Gosub Make_it_move(X,Present_t)
  472.         Endif
  473.       Endif
  474.     Endif
  475.   Endif
  476.   '
  477.   If (A>0 And B>145) And (A<53 And B<198)
  478.     If Square_lit=False
  479.       Tempva=0
  480.       Tempvb=145
  481.       Squarea=0
  482.       Squareb=145
  483.       X=6
  484.       Y=Present_v
  485.       If Used_v=False
  486.         If C=2
  487.           Square_lit=True
  488.           Void Xbios(5,L:Screen0%,L:-1,-1)
  489.           Deffill 1,0,0
  490.           Pbox 0,145,53,198
  491.           Gosub Replace_square(Tempva,Tempvb)
  492.           Bmove Screen0%,Screen1%,32000
  493.           Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  494.         Endif
  495.         If C=1
  496.           Pause 5
  497.           Used_v=True
  498.           Void Xbios(5,L:Screen0%,L:-1,-1)
  499.           Put 0,145,Blanksquare$,3
  500.           Bmove Screen0%,Screen1%,32000
  501.           Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  502.           Gosub Make_it_move(X,Present_v)
  503.         Endif
  504.       Endif
  505.     Endif
  506.   Endif
  507.   '
  508.   If (A>53 And B>145) And (A<106 And B<198)
  509.     If Square_lit=False
  510.       Templa=53
  511.       Templb=145
  512.       Squarea=53
  513.       Squareb=145
  514.       X=10
  515.       Y=Present_l
  516.       If Used_l=False
  517.         If C=2
  518.           Square_lit=True
  519.           Void Xbios(5,L:Screen0%,L:-1,-1)
  520.           Deffill 1,0,0
  521.           Pbox 53,145,106,198
  522.           Gosub Replace_square(Templa,Templb)
  523.           Bmove Screen0%,Screen1%,32000
  524.           Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  525.         Endif
  526.         If C=1
  527.           Pause 5
  528.           Used_l=True
  529.           Void Xbios(5,L:Screen0%,L:-1,-1)
  530.           Put 53,145,Blanksquare$,3
  531.           Bmove Screen0%,Screen1%,32000
  532.           Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  533.           Gosub Make_it_move(X,Present_l)
  534.         Endif
  535.       Endif
  536.     Endif
  537.   Endif
  538.   '
  539.   If (A>106 And B>145) And (A<159 And B<198)
  540.     If Square_lit=False
  541.       Tempia=106
  542.       Tempib=145
  543.       Squarea=106
  544.       Squareb=145
  545.       X=12
  546.       Y=Present_i
  547.       If Used_i=False
  548.         If C=2
  549.           Square_lit=True
  550.           Void Xbios(5,L:Screen0%,L:-1,-1)
  551.           Deffill 1,0,0
  552.           Pbox 106,145,159,198
  553.           Gosub Replace_square(Tempia,Tempib)
  554.           Bmove Screen0%,Screen1%,32000
  555.           Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  556.         Endif
  557.         If C=1
  558.           Pause 5
  559.           Used_i=True
  560.           Void Xbios(5,L:Screen0%,L:-1,-1)
  561.           Put 106,145,Blanksquare$,3
  562.           Bmove Screen0%,Screen1%,32000
  563.           Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  564.           Gosub Make_it_move(X,Present_i)
  565.         Endif
  566.       Endif
  567.     Endif
  568.   Endif
  569.   '
  570.   If (A>159 And B>145) And (A<212 And B<198)
  571.     If Square_lit=False
  572.       Tempya=159
  573.       Tempyb=145
  574.       Squarea=159
  575.       Squareb=145
  576.       X=9
  577.       Y=Present_y
  578.       If Used_y=False
  579.         If C=2
  580.           Square_lit=True
  581.           Void Xbios(5,L:Screen0%,L:-1,-1)
  582.           Deffill 1,0,0
  583.           Pbox 159,145,212,198
  584.           Gosub Replace_square(Tempya,Tempyb)
  585.           Bmove Screen0%,Screen1%,32000
  586.           Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  587.         Endif
  588.         If C=1
  589.           Pause 5
  590.           Used_y=True
  591.           Void Xbios(5,L:Screen0%,L:-1,-1)
  592.           Put 159,145,Blanksquare$,3
  593.           Bmove Screen0%,Screen1%,32000
  594.           Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  595.           Gosub Make_it_move(X,Present_y)
  596.         Endif
  597.       Endif
  598.     Endif
  599.   Endif
  600.   '
  601.   If (A>212 And B>145) And (A<265 And B<198)
  602.     If Square_lit=False
  603.       Tempsa=212
  604.       Tempsb=145
  605.       Squarea=212
  606.       Squareb=145
  607.       X=11
  608.       Y=Present_s
  609.       If Used_s=False
  610.         If C=2
  611.           Square_lit=True
  612.           Void Xbios(5,L:Screen0%,L:-1,-1)
  613.           Deffill 1,0,0
  614.           Pbox 212,145,265,198
  615.           Gosub Replace_square(Tempsa,Tempsb)
  616.           Bmove Screen0%,Screen1%,32000
  617.           Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  618.         Endif
  619.         If C=1
  620.           Pause 5
  621.           Used_s=True
  622.           Void Xbios(5,L:Screen0%,L:-1,-1)
  623.           Put 212,145,Blanksquare$,3
  624.           Bmove Screen0%,Screen1%,32000
  625.           Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  626.           Gosub Make_it_move(X,Present_s)
  627.         Endif
  628.       Endif
  629.     Endif
  630.   Endif
  631.   '
  632.   If (A>265 And B>145) And (A<318 And B<198)
  633.     If Square_lit=False
  634.       Tempfa=265
  635.       Tempfb=145
  636.       Squarea=265
  637.       Squareb=145
  638.       X=8
  639.       Y=Present_f
  640.       If Used_f=False
  641.         If C=2
  642.           Square_lit=True
  643.           Void Xbios(5,L:Screen0%,L:-1,-1)
  644.           Deffill 1,0,0
  645.           Pbox 265,145,318,198
  646.           Gosub Replace_square(Tempfa,Tempfb)
  647.           Bmove Screen0%,Screen1%,32000
  648.           Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  649.         Endif
  650.         If C=1
  651.           Pause 5
  652.           Used_f=True
  653.           Void Xbios(5,L:Screen0%,L:-1,-1)
  654.           Put 265,145,Blanksquare$,3
  655.           Bmove Screen0%,Screen1%,32000
  656.           Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  657.           Gosub Make_it_move(X,Present_f)
  658.         Endif
  659.       Endif
  660.     Endif
  661.   Endif
  662.   '
  663.   If Grid<>5
  664.     If C=2 And (A>55 And A<265) And (B>24 And B<92)
  665.       If Square_lit=False
  666.         '
  667.         Present_colour=Point(A,B)
  668.         Gosub Which_shape(Present_colour)
  669.         '
  670.       Endif
  671.     Endif
  672.   Endif
  673.   '
  674.   If Grid=5
  675.     If C=2 And (A>100 And A<210) And (B>0 And B<92)
  676.       If Square_lit=False
  677.         '
  678.         Present_colour=Point(A,B)
  679.         Gosub Which_shape(Present_colour)
  680.         '
  681.       Endif
  682.     Endif
  683.   Endif
  684.   '                         ______________________
  685. Loop             ! -----===< | END OF MAIN LOOP | >===-------
  686. '                           ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  687. ' ****************************************************************************
  688. '
  689. Procedure Make_it_move(X,Y)
  690.   Hidem
  691.   Do
  692.     '
  693.     Bmove Screen0%,Screen2%,32000
  694.     Void Xbios(5,L:Screen2%,L:-1,-1)
  695.     Mouse A1,B1,C1
  696.     Put A1-10,B1-10,Mask$(X,Y),4
  697.     Vsync
  698.     Put A1-10,B1-10,Shape$(X,Y),6
  699.     Void Xbios(5,L:Screen2%,L:Screen2%,-1)
  700.     '
  701.     Bmove Screen0%,Screen1%,32000
  702.     Void Xbios(5,L:Screen1%,L:-1,-1)
  703.     Mouse A,B,C
  704.     Put A-10,B-10,Mask$(X,Y),4
  705.     Vsync
  706.     Put A-10,B-10,Shape$(X,Y),6
  707.     Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  708.     '
  709.     Exit If C=1
  710.   Loop
  711.   Gosub Where_is_it(Squarea,Squareb)
  712.   Showm
  713. Return
  714. ' -----------------------------------------------------------------------------
  715. Procedure Initialise_squares
  716.   '
  717.   Present_t=1
  718.   Present_u=1
  719.   Present_z=1
  720.   Present_p=1
  721.   Present_w=1
  722.   Present_v=1
  723.   Present_x=1
  724.   Present_f=1
  725.   Present_y=1
  726.   Present_l=1
  727.   Present_s=1
  728.   Present_i=1
  729.   '
  730. Return
  731. ' -----------------------------------------------------------------------------
  732. Procedure Put_squares_on_screen
  733.   '
  734.   Void Xbios(5,L:Screen0%,L:-1,-1)
  735.   Put 13,105,Mask$(3,1),4
  736.   Put 13,105,Shape$(3,1),6
  737.   '
  738.   Put 71,105,Mask$(2,1),4
  739.   Put 71,105,Shape$(2,1),6
  740.   '
  741.   Put 124,105,Mask$(4,1),4
  742.   Put 124,105,Shape$(4,1),6
  743.   '
  744.   Put 172,105,Mask$(5,1),4
  745.   Put 172,105,Shape$(5,1),6
  746.   '
  747.   Put 225,105,Mask$(7,1),4
  748.   Put 225,105,Shape$(7,1),6
  749.   '
  750.   Put 279,105,Mask$(1,1),4
  751.   Put 279,105,Shape$(1,1),6
  752.   '
  753.   Put 13,159,Mask$(6,1),4
  754.   Put 13,159,Shape$(6,1),6
  755.   '
  756.   Put 72,154,Mask$(10,1),4
  757.   Put 72,154,Shape$(10,1),6
  758.   '
  759.   Put 109,167,Mask$(12,1),4
  760.   Put 109,167,Shape$(12,1),6
  761.   '
  762.   Put 178,154,Mask$(9,1),4
  763.   Put 178,154,Shape$(9,1),6
  764.   '
  765.   Put 230,154,Mask$(11,1),4
  766.   Put 230,154,Shape$(11,1),6
  767.   '
  768.   Put 279,160,Mask$(8,1),4
  769.   Put 279,160,Shape$(8,1),6
  770.   '
  771.   Bmove Screen0%,Screen1%,32000
  772.   Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  773.   '
  774. Return
  775. ' -----------------------------------------------------------------------------
  776. Procedure Replace_square(Tempa,Tempb)
  777.   '
  778.   Void Xbios(5,L:Screen0%,L:-1,-1)
  779.   '
  780.   If Square_lit=True
  781.     Put Tempa+1,Tempb+1,Hole$,3
  782.   Endif
  783.   '
  784.   If Square_lit=False
  785.     Put Tempa,Tempb,Blanksquare$,3
  786.   Endif
  787.   '
  788.   If X=3 Or X=5 Or X=7 Or X=1 Or X=8 Or X=6
  789.     Put Tempa+13,Tempb+12,Mask$(X,Y),4
  790.     Put Tempa+13,Tempb+12,Shape$(X,Y),6
  791.   Endif
  792.   '
  793.   If (X=4 Or X=2) And Odd(Y)
  794.     Put Tempa+18,Tempb+13,Mask$(X,Y),4
  795.     Put Tempa+18,Tempb+13,Shape$(X,Y),6
  796.   Endif
  797.   '
  798.   If (X=4 Or X=2) And Even(Y)
  799.     Put Tempa+13,Tempb+18,Mask$(X,Y),4
  800.     Put Tempa+13,Tempb+18,Shape$(X,Y),6
  801.   Endif
  802.   '
  803.   If (X=10 Or X=9 Or X=11) And Odd(Y)
  804.     Put Tempa+18,Tempb+8,Mask$(X,Y),4
  805.     Put Tempa+18,Tempb+8,Shape$(X,Y),6
  806.   Endif
  807.   '
  808.   If (X=10 Or X=9 Or X=11) And Even(Y)
  809.     Put Tempa+8,Tempb+18,Mask$(X,Y),4
  810.     Put Tempa+8,Tempb+18,Shape$(X,Y),6
  811.   Endif
  812.   '
  813.   If X=12 And Even(Y)
  814.     Put Tempa+24,Tempb+3,Mask$(X,Y),4
  815.     Put Tempa+24,Tempb+3,Shape$(X,Y),6
  816.   Endif
  817.   '
  818.   If X=12 And Odd(Y)
  819.     Put Tempa+3,Tempb+24,Mask$(X,Y),4
  820.     Put Tempa+3,Tempb+24,Shape$(X,Y),6
  821.   Endif
  822.   '
  823.   Bmove Screen0%,Screen1%,32000
  824.   Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  825.   '
  826. Return
  827. ' -----------------------------------------------------------------------------
  828. Procedure Determine_present_rotation
  829.   '
  830.   If C=2
  831.     If X=1
  832.       Present_t=Rotate_right(Present_t)
  833.       Y=Present_t
  834.     Endif
  835.     '
  836.     If X=2
  837.       Present_u=Rotate_right(Present_u)
  838.       Y=Present_u
  839.     Endif
  840.     '
  841.     If X=3
  842.       Present_z=Rotate_right(Present_z)
  843.       Y=Present_z
  844.     Endif
  845.     '
  846.     If X=4
  847.       Present_p=Rotate_right(Present_p)
  848.       Y=Present_p
  849.     Endif
  850.     '
  851.     If X=5
  852.       Present_w=Rotate_right(Present_w)
  853.       Y=Present_w
  854.     Endif
  855.     '
  856.     If X=6
  857.       Present_v=Rotate_right(Present_v)
  858.       Y=Present_v
  859.     Endif
  860.     '
  861.     If X=7
  862.       Present_x=Rotate_right(Present_x)
  863.       Y=Present_x
  864.     Endif
  865.     '
  866.     If X=8
  867.       Present_f=Rotate_right(Present_f)
  868.       Y=Present_f
  869.     Endif
  870.     '
  871.     If X=9
  872.       Present_y=Rotate_right(Present_y)
  873.       Y=Present_y
  874.     Endif
  875.     '
  876.     If X=10
  877.       Present_l=Rotate_right(Present_l)
  878.       Y=Present_l
  879.     Endif
  880.     '
  881.     If X=11
  882.       Present_s=Rotate_right(Present_s)
  883.       Y=Present_s
  884.     Endif
  885.     '
  886.     If X=12
  887.       Present_i=Rotate_right(Present_i)
  888.       Y=Present_i
  889.     Endif
  890.   Endif
  891.   '
  892.   If C=1
  893.     If X=1
  894.       Present_t=Rotate_left(Present_t)
  895.       Y=Present_t
  896.     Endif
  897.     '
  898.     If X=2
  899.       Present_u=Rotate_left(Present_u)
  900.       Y=Present_u
  901.     Endif
  902.     '
  903.     If X=3
  904.       Present_z=Rotate_left(Present_z)
  905.       Y=Present_z
  906.     Endif
  907.     '
  908.     If X=4
  909.       Present_p=Rotate_left(Present_p)
  910.       Y=Present_p
  911.     Endif
  912.     '
  913.     If X=5
  914.       Present_w=Rotate_left(Present_w)
  915.       Y=Present_w
  916.     Endif
  917.     '
  918.     If X=6
  919.       Present_v=Rotate_left(Present_v)
  920.       Y=Present_v
  921.     Endif
  922.     '
  923.     If X=7
  924.       Present_x=Rotate_left(Present_x)
  925.       Y=Present_x
  926.     Endif
  927.     '
  928.     If X=8
  929.       Present_f=Rotate_left(Present_f)
  930.       Y=Present_f
  931.     Endif
  932.     '
  933.     If X=9
  934.       Present_y=Rotate_left(Present_y)
  935.       Y=Present_y
  936.     Endif
  937.     '
  938.     If X=10
  939.       Present_l=Rotate_left(Present_l)
  940.       Y=Present_l
  941.     Endif
  942.     '
  943.     If X=11
  944.       Present_s=Rotate_left(Present_s)
  945.       Y=Present_s
  946.     Endif
  947.     '
  948.     If X=12
  949.       Present_i=Rotate_left(Present_i)
  950.       Y=Present_i
  951.     Endif
  952.   Endif
  953. Return
  954. ' -----------------------------------------------------------------------------
  955. Procedure Make_false
  956.   '
  957.   Y=1
  958.   Square_lit=False
  959.   Used_t=False
  960.   Used_u=False
  961.   Used_z=False
  962.   Used_p=False
  963.   Used_w=False
  964.   Used_v=False
  965.   Used_x=False
  966.   Used_f=False
  967.   Used_y=False
  968.   Used_l=False
  969.   Used_s=False
  970.   Used_i=False
  971.   '
  972. Return
  973. ' -----------------------------------------------------------------------------
  974. Procedure Initialise_arrays
  975.   '
  976.   Restore Arraydata
  977.   For I%=1 To 8
  978.     Read Flip(I%)
  979.   Next I%
  980.   For I%=1 To 8
  981.     Read Twist(I%)
  982.   Next I%
  983.   For I%=1 To 8
  984.     Read Rotate_right(I%)
  985.   Next I%
  986.   For I%=1 To 8
  987.     Read Rotate_left(I%)
  988.   Next I%
  989.   Arraydata:
  990.   Data 7,6,5,8,3,2,1,4
  991.   Data 5,8,7,6,1,4,3,2
  992.   Data 2,3,4,1,6,7,8,5
  993.   Data 4,1,2,3,8,5,6,7
  994.   '
  995. Return
  996. '
  997. ' -----------------------------------------------------------------------------
  998. '
  999. Procedure Determine_present_flip
  1000.   '
  1001.   If X=1
  1002.     Present_t=Flip(Present_t)
  1003.     Y=Present_t
  1004.   Endif
  1005.   '
  1006.   If X=2
  1007.     Present_u=Flip(Present_u)
  1008.     Y=Present_u
  1009.   Endif
  1010.   '
  1011.   If X=3
  1012.     Present_z=Flip(Present_z)
  1013.     Y=Present_z
  1014.   Endif
  1015.   '
  1016.   If X=4
  1017.     Present_p=Flip(Present_p)
  1018.     Y=Present_p
  1019.   Endif
  1020.   '
  1021.   If X=5
  1022.     Present_w=Flip(Present_w)
  1023.     Y=Present_w
  1024.   Endif
  1025.   '
  1026.   If X=6
  1027.     Present_v=Flip(Present_v)
  1028.     Y=Present_v
  1029.   Endif
  1030.   '
  1031.   If X=7
  1032.     Present_x=Flip(Present_x)
  1033.     Y=Present_x
  1034.   Endif
  1035.   '
  1036.   If X=8
  1037.     Present_f=Flip(Present_f)
  1038.     Y=Present_f
  1039.   Endif
  1040.   '
  1041.   If X=9
  1042.     Present_y=Flip(Present_y)
  1043.     Y=Present_y
  1044.   Endif
  1045.   '
  1046.   If X=10
  1047.     Present_l=Flip(Present_l)
  1048.     Y=Present_l
  1049.   Endif
  1050.   '
  1051.   If X=11
  1052.     Present_s=Flip(Present_s)
  1053.     Y=Present_s
  1054.   Endif
  1055.   '
  1056.   If X=12
  1057.     Present_i=Flip(Present_i)
  1058.     Y=Present_i
  1059.   Endif
  1060.   '
  1061. Return
  1062. ' -----------------------------------------------------------------------------
  1063. Procedure Determine_present_twist
  1064.   '
  1065.   If X=1
  1066.     Present_t=Twist(Present_t)
  1067.     Y=Present_t
  1068.   Endif
  1069.   '
  1070.   If X=2
  1071.     Present_u=Twist(Present_u)
  1072.     Y=Present_u
  1073.   Endif
  1074.   '
  1075.   If X=3
  1076.     Present_z=Twist(Present_z)
  1077.     Y=Present_z
  1078.   Endif
  1079.   '
  1080.   If X=4
  1081.     Present_p=Twist(Present_p)
  1082.     Y=Present_p
  1083.   Endif
  1084.   '
  1085.   If X=5
  1086.     Present_w=Twist(Present_w)
  1087.     Y=Present_w
  1088.   Endif
  1089.   '
  1090.   If X=6
  1091.     Present_v=Twist(Present_v)
  1092.     Y=Present_v
  1093.   Endif
  1094.   '
  1095.   If X=7
  1096.     Present_x=Twist(Present_x)
  1097.     Y=Present_x
  1098.   Endif
  1099.   '
  1100.   If X=8
  1101.     Present_f=Twist(Present_f)
  1102.     Y=Present_f
  1103.   Endif
  1104.   '
  1105.   If X=9
  1106.     Present_y=Twist(Present_y)
  1107.     Y=Present_y
  1108.   Endif
  1109.   '
  1110.   If X=10
  1111.     Present_l=Twist(Present_l)
  1112.     Y=Present_l
  1113.   Endif
  1114.   '
  1115.   If X=11
  1116.     Present_s=Twist(Present_s)
  1117.     Y=Present_s
  1118.   Endif
  1119.   '
  1120.   If X=12
  1121.     Present_i=Twist(Present_i)
  1122.     Y=Present_i
  1123.   Endif
  1124.   '
  1125. Return
  1126. ' -----------------------------------------------------------------------------
  1127. Procedure Where_is_it(Squarea,Squareb)
  1128.   '
  1129.   If Grid=1
  1130.     If X=3 Or X=5 Or X=7 Or X=1 Or X=8 Or X=6
  1131.       If (A>64 And B>48) And (A<246 And B<59)
  1132.         Gosub Snap_320
  1133.       Else
  1134.         Gosub Replace_square(Squarea,Squareb)
  1135.         Gosub Which_false
  1136.       Endif
  1137.     Endif
  1138.     '
  1139.     If (X=4 Or X=2) And Odd(Y)
  1140.       If (A>64 And B>48) And (A<256 And B<59)
  1141.         Gosub Snap_320
  1142.       Else
  1143.         Gosub Replace_square(Squarea,Squareb)
  1144.         Gosub Which_false
  1145.       Endif
  1146.     Endif
  1147.     '
  1148.     If (X=4 Or X=2) And Even(Y)
  1149.       If (A>64 And B>48) And (A<246 And B<69)
  1150.         Gosub Snap_320
  1151.       Else
  1152.         Gosub Replace_square(Squarea,Squareb)
  1153.         Gosub Which_false
  1154.       Endif
  1155.     Endif
  1156.     '
  1157.     If (X=10 Or X=9 Or X=11) And Even(Y)
  1158.       If (A>64 And B>48) And (A<236 And B<69)
  1159.         Gosub Snap_320
  1160.       Else
  1161.         Gosub Replace_square(Squarea,Squareb)
  1162.         Gosub Which_false
  1163.       Endif
  1164.     Endif
  1165.     '
  1166.     If (X=10 Or X=9 Or X=11) And Odd(Y)
  1167.       Gosub Replace_square(Squarea,Squareb)
  1168.       Gosub Which_false
  1169.     Endif
  1170.     '
  1171.     If X=12 And Odd(Y)
  1172.       If (A>64 And B>48) And (A<226 And B<79)
  1173.         Gosub Snap_320
  1174.       Else
  1175.         Gosub Replace_square(Squarea,Squareb)
  1176.         Gosub Which_false
  1177.       Endif
  1178.     Endif
  1179.     '
  1180.     If X=12 And Even(Y)
  1181.       Gosub Replace_square(Squarea,Squareb)
  1182.       Gosub Which_false
  1183.     Endif
  1184.     '
  1185.   Endif
  1186.   '
  1187.   If Grid=2
  1188.     If X=3 Or X=5 Or X=7 Or X=1 Or X=8 Or X=6
  1189.       If (A>90 And B>42) And (A<222 And B<64)
  1190.         Gosub Snap_415
  1191.       Else
  1192.         Gosub Replace_square(Squarea,Squareb)
  1193.         Gosub Which_false
  1194.       Endif
  1195.     Endif
  1196.     '
  1197.     If (X=4 Or X=2) And Odd(Y)
  1198.       If (A>90 And B>42) And (A<232 And B<64)
  1199.         Gosub Snap_415
  1200.       Else
  1201.         Gosub Replace_square(Squarea,Squareb)
  1202.         Gosub Which_false
  1203.       Endif
  1204.     Endif
  1205.     '
  1206.     If (X=4 Or X=2) And Even(Y)
  1207.       If (A>90 And B>42) And (A<222 And B<74)
  1208.         Gosub Snap_415
  1209.       Else
  1210.         Gosub Replace_square(Squarea,Squareb)
  1211.         Gosub Which_false
  1212.       Endif
  1213.     Endif
  1214.     '
  1215.     If (X=10 Or X=9 Or X=11) And Even(Y)
  1216.       If (A>90 And B>42) And (A<212 And B<74)
  1217.         Gosub Snap_415
  1218.       Else
  1219.         Gosub Replace_square(Squarea,Squareb)
  1220.         Gosub Which_false
  1221.       Endif
  1222.     Endif
  1223.     '
  1224.     If (X=10 Or X=9 Or X=11) And Odd(Y)
  1225.       If (A>90 And B>42) And (A<232 And B<54)
  1226.         Gosub Snap_415
  1227.       Else
  1228.         Gosub Replace_square(Squarea,Squareb)
  1229.         Gosub Which_false
  1230.       Endif
  1231.     Endif
  1232.     '
  1233.     If X=12 And Odd(Y)
  1234.       If (A>90 And B>42) And (A<202 And B<84)
  1235.         Gosub Snap_415
  1236.       Else
  1237.         Gosub Replace_square(Squarea,Squareb)
  1238.         Gosub Which_false
  1239.       Endif
  1240.     Endif
  1241.     '
  1242.     If X=12 And Even(Y)
  1243.       Gosub Replace_square(Squarea,Squareb)
  1244.       Gosub Which_false
  1245.     Endif
  1246.     '
  1247.   Endif
  1248.   '
  1249.   If Grid=3
  1250.     If X=3 Or X=5 Or X=7 Or X=1 Or X=8 Or X=6
  1251.       If (A>104 And B>36) And (A<206 And B<68)
  1252.         Gosub Snap_512
  1253.       Else
  1254.         Gosub Replace_square(Squarea,Squareb)
  1255.         Gosub Which_false
  1256.       Endif
  1257.     Endif
  1258.     '
  1259.     If (X=4 Or X=2) And Odd(Y)
  1260.       If (A>104 And B>36) And (A<217 And B<68)
  1261.         Gosub Snap_512
  1262.       Else
  1263.         Gosub Replace_square(Squarea,Squareb)
  1264.         Gosub Which_false
  1265.       Endif
  1266.     Endif
  1267.     '
  1268.     If (X=4 Or X=2) And Even(Y)
  1269.       If (A>104 And B>36) And (A<206 And B<78)
  1270.         Gosub Snap_512
  1271.       Else
  1272.         Gosub Replace_square(Squarea,Squareb)
  1273.         Gosub Which_false
  1274.       Endif
  1275.     Endif
  1276.     '
  1277.     If (X=10 Or X=9 Or X=11) And Even(Y)
  1278.       If (A>104 And B>36) And (A<196 And B<78)
  1279.         Gosub Snap_512
  1280.       Else
  1281.         Gosub Replace_square(Squarea,Squareb)
  1282.         Gosub Which_false
  1283.       Endif
  1284.     Endif
  1285.     '
  1286.     If (X=10 Or X=9 Or X=11) And Odd(Y)
  1287.       If (A>104 And B>36) And (A<216 And B<58)
  1288.         Gosub Snap_512
  1289.       Else
  1290.         Gosub Replace_square(Squarea,Squareb)
  1291.         Gosub Which_false
  1292.       Endif
  1293.     Endif
  1294.     '
  1295.     If X=12 And Odd(Y)
  1296.       If (A>104 And B>36) And (A<186 And B<88)
  1297.         Gosub Snap_512
  1298.       Else
  1299.         Gosub Replace_square(Squarea,Squareb)
  1300.         Gosub Which_false
  1301.       Endif
  1302.     Endif
  1303.     '
  1304.     If X=12 And Even(Y)
  1305.       If (A>104 And B>36) And (A<226 And B<48)
  1306.         Gosub Snap_512
  1307.       Else
  1308.         Gosub Replace_square(Squarea,Squareb)
  1309.         Gosub Which_false
  1310.       Endif
  1311.     Endif
  1312.     '
  1313.   Endif
  1314.   '
  1315.   If Grid=4
  1316.     If X=3 Or X=5 Or X=7 Or X=1 Or X=8 Or X=6
  1317.       If (A>114 And B>31) And (A<196 And B<73)
  1318.         Gosub Snap_610
  1319.       Else
  1320.         Gosub Replace_square(Squarea,Squareb)
  1321.         Gosub Which_false
  1322.       Endif
  1323.     Endif
  1324.     '
  1325.     If (X=4 Or X=2) And Odd(Y)
  1326.       If (A>114 And B>31) And (A<206 And B<73)
  1327.         Gosub Snap_610
  1328.       Else
  1329.         Gosub Replace_square(Squarea,Squareb)
  1330.         Gosub Which_false
  1331.       Endif
  1332.     Endif
  1333.     '
  1334.     If (X=4 Or X=2) And Even(Y)
  1335.       If (A>114 And B>31) And (A<196 And B<83)
  1336.         Gosub Snap_610
  1337.       Else
  1338.         Gosub Replace_square(Squarea,Squareb)
  1339.         Gosub Which_false
  1340.       Endif
  1341.     Endif
  1342.     '
  1343.     If (X=10 Or X=9 Or X=11) And Even(Y)
  1344.       If (A>114 And B>31) And (A<186 And B<83)
  1345.         Gosub Snap_610
  1346.       Else
  1347.         Gosub Replace_square(Squarea,Squareb)
  1348.         Gosub Which_false
  1349.       Endif
  1350.     Endif
  1351.     '
  1352.     If (X=10 Or X=9 Or X=11) And Odd(Y)
  1353.       If (A>114 And B>31) And (A<206 And B<63)
  1354.         Gosub Snap_610
  1355.       Else
  1356.         Gosub Replace_square(Squarea,Squareb)
  1357.         Gosub Which_false
  1358.       Endif
  1359.     Endif
  1360.     '
  1361.     If X=12 And Odd(Y)
  1362.       If (A>114 And B>31) And (A<176 And B<93)
  1363.         Gosub Snap_610
  1364.       Else
  1365.         Gosub Replace_square(Squarea,Squareb)
  1366.         Gosub Which_false
  1367.       Endif
  1368.     Endif
  1369.     '
  1370.     If X=12 And Even(Y)
  1371.       If (A>114 And B>31) And (A<216 And B<53)
  1372.         Gosub Snap_610
  1373.       Else
  1374.         Gosub Replace_square(Squarea,Squareb)
  1375.         Gosub Which_false
  1376.       Endif
  1377.     Endif
  1378.     '
  1379.   Endif
  1380.   '
  1381.   If Grid=5
  1382.     If X=3 Or X=5 Or X=7 Or X=1 Or X=8 Or X=6
  1383.       If (A>124 And B>10) And (A<186 And B<72)
  1384.         Gosub Snap_88
  1385.       Else
  1386.         Gosub Replace_square(Squarea,Squareb)
  1387.         Gosub Which_false
  1388.       Endif
  1389.     Endif
  1390.     '
  1391.     If (X=4 Or X=2) And Odd(Y)
  1392.       If (A>124 And B>10) And (A<196 And B<72)
  1393.         Gosub Snap_88
  1394.       Else
  1395.         Gosub Replace_square(Squarea,Squareb)
  1396.         Gosub Which_false
  1397.       Endif
  1398.     Endif
  1399.     '
  1400.     If (X=4 Or X=2) And Even(Y)
  1401.       If (A>124 And B>10) And (A<186 And B<82)
  1402.         Gosub Snap_88
  1403.       Else
  1404.         Gosub Replace_square(Squarea,Squareb)
  1405.         Gosub Which_false
  1406.       Endif
  1407.     Endif
  1408.     '
  1409.     If (X=10 Or X=9 Or X=11) And Even(Y)
  1410.       If (A>124 And B>10) And (A<176 And B<82)
  1411.         Gosub Snap_88
  1412.       Else
  1413.         Gosub Replace_square(Squarea,Squareb)
  1414.         Gosub Which_false
  1415.       Endif
  1416.     Endif
  1417.     '
  1418.     If (X=10 Or X=9 Or X=11) And Odd(Y)
  1419.       If (A>124 And B>10) And (A<196 And B<62)
  1420.         Gosub Snap_88
  1421.       Else
  1422.         Gosub Replace_square(Squarea,Squareb)
  1423.         Gosub Which_false
  1424.       Endif
  1425.     Endif
  1426.     '
  1427.     If X=12 And Odd(Y)
  1428.       If (A>124 And B>10) And (A<166 And B<92)
  1429.         Gosub Snap_88
  1430.       Else
  1431.         Gosub Replace_square(Squarea,Squareb)
  1432.         Gosub Which_false
  1433.       Endif
  1434.     Endif
  1435.     '
  1436.     If X=12 And Even(Y)
  1437.       If (A>124 And B>10) And (A<206 And B<52)
  1438.         Gosub Snap_88
  1439.       Else
  1440.         Gosub Replace_square(Squarea,Squareb)
  1441.         Gosub Which_false
  1442.       Endif
  1443.     Endif
  1444.     '
  1445.   Endif
  1446.   '
  1447. Return
  1448. '
  1449. ' -----------------------------------------------------------------------------
  1450. '
  1451. Procedure Snap_320
  1452.   '
  1453.   Void Xbios(5,L:Screen0%,L:-1,-1)
  1454.   '
  1455.   If A=>65 And A=<75
  1456.     A=70
  1457.   Endif
  1458.   '
  1459.   If A=>75 And A=<85
  1460.     A=80
  1461.   Endif
  1462.   '
  1463.   If A=>85 And A=<95
  1464.     A=90
  1465.   Endif
  1466.   '
  1467.   If A=>95 And A=<105
  1468.     A=100
  1469.   Endif
  1470.   '
  1471.   If A=>105 And A=<115
  1472.     A=110
  1473.   Endif
  1474.   '
  1475.   If A=>115 And A=<125
  1476.     A=120
  1477.   Endif
  1478.   '
  1479.   If A=>125 And A=<135
  1480.     A=130
  1481.   Endif
  1482.   '
  1483.   If A=>135 And A=<145
  1484.     A=140
  1485.   Endif
  1486.   '
  1487.   If A=>145 And A=<155
  1488.     A=150
  1489.   Endif
  1490.   '
  1491.   If A=>155 And A=<165
  1492.     A=160
  1493.   Endif
  1494.   '
  1495.   If A=>165 And A=<175
  1496.     A=170
  1497.   Endif
  1498.   '
  1499.   If A=>175 And A=<185
  1500.     A=180
  1501.   Endif
  1502.   '
  1503.   If A=>185 And A=<195
  1504.     A=190
  1505.   Endif
  1506.   '
  1507.   If A=>195 And A=<205
  1508.     A=200
  1509.   Endif
  1510.   '
  1511.   If A=>205 And A=<215
  1512.     A=210
  1513.   Endif
  1514.   '
  1515.   If A=>215 And A=<225
  1516.     A=220
  1517.   Endif
  1518.   '
  1519.   If A=>225 And A=<235
  1520.     A=230
  1521.   Endif
  1522.   '
  1523.   If A=>235 And A=<245
  1524.     A=240
  1525.   Endif
  1526.   '
  1527.   If A=>245 And A=<255
  1528.     A=250
  1529.   Endif
  1530.   '
  1531.   If A=>255 And A=<265
  1532.     A=260
  1533.   Endif
  1534.   '
  1535.   If B=>48 And B=<58
  1536.     B=53
  1537.   Endif
  1538.   '
  1539.   If B=>58 And B=<68
  1540.     B=63
  1541.   Endif
  1542.   '
  1543.   If B=>68 And B=<78
  1544.     B=73
  1545.   Endif
  1546.   '
  1547.   Gosub Set_square
  1548.   '
  1549.   Put A-10,B-10,Mask$(X,Y),4
  1550.   Put A-10,B-10,Shape$(X,Y),6
  1551.   '
  1552.   Bmove Screen0%,Screen1%,32000
  1553.   Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  1554.   '
  1555. Return
  1556. ' -----------------------------------------------------------------------------
  1557. Procedure Snap_415
  1558.   '
  1559.   Void Xbios(5,L:Screen0%,L:-1,-1)
  1560.   '
  1561.   If A=>91 And A=<101
  1562.     A=96
  1563.   Endif
  1564.   '
  1565.   If A=>101 And A=<111
  1566.     A=106
  1567.   Endif
  1568.   '
  1569.   If A=>111 And A=<121
  1570.     A=116
  1571.   Endif
  1572.   '
  1573.   If A=>121 And A=<131
  1574.     A=126
  1575.   Endif
  1576.   '
  1577.   If A=>131 And A=<141
  1578.     A=136
  1579.   Endif
  1580.   '
  1581.   If A=>141 And A=<151
  1582.     A=146
  1583.   Endif
  1584.   '
  1585.   If A=>151 And A=<161
  1586.     A=156
  1587.   Endif
  1588.   '
  1589.   If A=>161 And A=<171
  1590.     A=166
  1591.   Endif
  1592.   '
  1593.   If A=>171 And A=<181
  1594.     A=176
  1595.   Endif
  1596.   '
  1597.   If A=>181 And A=<191
  1598.     A=186
  1599.   Endif
  1600.   '
  1601.   If A=>191 And A=<201
  1602.     A=196
  1603.   Endif
  1604.   '
  1605.   If A=>201 And A=<211
  1606.     A=206
  1607.   Endif
  1608.   '
  1609.   If A=>211 And A=<221
  1610.     A=216
  1611.   Endif
  1612.   '
  1613.   If A=>221 And A=<231
  1614.     A=226
  1615.   Endif
  1616.   '
  1617.   If A=>231 And A=<241
  1618.     A=236
  1619.   Endif
  1620.   '
  1621.   If B=>43 And B=<53
  1622.     B=48
  1623.   Endif
  1624.   '
  1625.   If B=>53 And B=<63
  1626.     B=58
  1627.   Endif
  1628.   '
  1629.   If B=>63 And B=<73
  1630.     B=68
  1631.   Endif
  1632.   '
  1633.   If B=>73 And B=<83
  1634.     B=78
  1635.   Endif
  1636.   '
  1637.   Gosub Set_square
  1638.   '
  1639.   Put A-10,B-10,Mask$(X,Y),4
  1640.   Put A-10,B-10,Shape$(X,Y),6
  1641.   '
  1642.   Bmove Screen0%,Screen1%,32000
  1643.   Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  1644.   '
  1645. Return
  1646. ' -----------------------------------------------------------------------------
  1647. Procedure Snap_512
  1648.   '
  1649.   Void Xbios(5,L:Screen0%,L:-1,-1)
  1650.   '
  1651.   If A=>105 And A=<115
  1652.     A=110
  1653.   Endif
  1654.   '
  1655.   If A=>115 And A=<125
  1656.     A=120
  1657.   Endif
  1658.   '
  1659.   If A=>125 And A=<135
  1660.     A=130
  1661.   Endif
  1662.   '
  1663.   If A=>135 And A=<145
  1664.     A=140
  1665.   Endif
  1666.   '
  1667.   If A=>145 And A=<155
  1668.     A=150
  1669.   Endif
  1670.   '
  1671.   If A=>155 And A=<165
  1672.     A=160
  1673.   Endif
  1674.   '
  1675.   If A=>165 And A=<175
  1676.     A=170
  1677.   Endif
  1678.   '
  1679.   If A=>175 And A=<185
  1680.     A=180
  1681.   Endif
  1682.   '
  1683.   If A=>185 And A=<195
  1684.     A=190
  1685.   Endif
  1686.   '
  1687.   If A=>195 And A=<205
  1688.     A=200
  1689.   Endif
  1690.   '
  1691.   If A=>205 And A=<215
  1692.     A=210
  1693.   Endif
  1694.   '
  1695.   If A=>215 And A=<225
  1696.     A=220
  1697.   Endif
  1698.   '
  1699.   If B=>37 And B=<47
  1700.     B=42
  1701.   Endif
  1702.   '
  1703.   If B=>47 And B=<57
  1704.     B=52
  1705.   Endif
  1706.   '
  1707.   If B=>57 And B=<67
  1708.     B=62
  1709.   Endif
  1710.   '
  1711.   If B=>67 And B=<77
  1712.     B=72
  1713.   Endif
  1714.   '
  1715.   If B=>77 And B=<87
  1716.     B=82
  1717.   Endif
  1718.   '
  1719.   Gosub Set_square
  1720.   '
  1721.   Put A-10,B-10,Mask$(X,Y),4
  1722.   Put A-10,B-10,Shape$(X,Y),6
  1723.   '
  1724.   Bmove Screen0%,Screen1%,32000
  1725.   Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  1726.   '
  1727. Return
  1728. ' -----------------------------------------------------------------------------
  1729. Procedure Snap_610
  1730.   '
  1731.   Void Xbios(5,L:Screen0%,L:-1,-1)
  1732.   '
  1733.   If A=>115 And A=<125
  1734.     A=120
  1735.   Endif
  1736.   '
  1737.   If A=>125 And A=<135
  1738.     A=130
  1739.   Endif
  1740.   '
  1741.   If A=>135 And A=<145
  1742.     A=140
  1743.   Endif
  1744.   '
  1745.   If A=>145 And A=<155
  1746.     A=150
  1747.   Endif
  1748.   '
  1749.   If A=>155 And A=<165
  1750.     A=160
  1751.   Endif
  1752.   '
  1753.   If A=>165 And A=<175
  1754.     A=170
  1755.   Endif
  1756.   '
  1757.   If A=>175 And A=<185
  1758.     A=180
  1759.   Endif
  1760.   '
  1761.   If A=>185 And A=<195
  1762.     A=190
  1763.   Endif
  1764.   '
  1765.   If A=>195 And A=<205
  1766.     A=200
  1767.   Endif
  1768.   '
  1769.   If A=>205 And A=<215
  1770.     A=210
  1771.   Endif
  1772.   '
  1773.   If B=>32 And B=<42
  1774.     B=37
  1775.   Endif
  1776.   '
  1777.   If B=>42 And B=<52
  1778.     B=47
  1779.   Endif
  1780.   '
  1781.   If B=>52 And B=<62
  1782.     B=57
  1783.   Endif
  1784.   '
  1785.   If B=>62 And B=<72
  1786.     B=67
  1787.   Endif
  1788.   '
  1789.   If B=>72 And B=<82
  1790.     B=77
  1791.   Endif
  1792.   '
  1793.   If B=>82 And B=<92
  1794.     B=87
  1795.   Endif
  1796.   '
  1797.   Gosub Set_square
  1798.   '
  1799.   Put A-10,B-10,Mask$(X,Y),4
  1800.   Put A-10,B-10,Shape$(X,Y),6
  1801.   '
  1802.   Bmove Screen0%,Screen1%,32000
  1803.   Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  1804.   '
  1805. Return
  1806. ' -----------------------------------------------------------------------------
  1807. Procedure Snap_88
  1808.   '
  1809.   Void Xbios(5,L:Screen0%,L:-1,-1)
  1810.   '
  1811.   If A=>125 And A=<135
  1812.     A=130
  1813.   Endif
  1814.   '
  1815.   If A=>135 And A=<145
  1816.     A=140
  1817.   Endif
  1818.   '
  1819.   If A=>145 And A=<155
  1820.     A=150
  1821.   Endif
  1822.   '
  1823.   If A=>155 And A=<165
  1824.     A=160
  1825.   Endif
  1826.   '
  1827.   If A=>165 And A=<175
  1828.     A=170
  1829.   Endif
  1830.   '
  1831.   If A=>175 And A=<185
  1832.     A=180
  1833.   Endif
  1834.   '
  1835.   If A=>185 And A=<195
  1836.     A=190
  1837.   Endif
  1838.   '
  1839.   If A=>195 And A=<205
  1840.     A=200
  1841.   Endif
  1842.   '
  1843.   If B=>3 And B=<13
  1844.     B=16
  1845.   Endif
  1846.   '
  1847.   If B=>13 And B=<23
  1848.     B=16
  1849.   Endif
  1850.   '
  1851.   If B=>23 And B=<33
  1852.     B=26
  1853.   Endif
  1854.   '
  1855.   If B=>33 And B=<43
  1856.     B=36
  1857.   Endif
  1858.   '
  1859.   If B=>43 And B=<53
  1860.     B=46
  1861.   Endif
  1862.   '
  1863.   If B=>53 And B=<63
  1864.     B=56
  1865.   Endif
  1866.   '
  1867.   If B=>63 And B=<73
  1868.     B=66
  1869.   Endif
  1870.   '
  1871.   If B=>73 And B=<83
  1872.     B=76
  1873.   Endif
  1874.   '
  1875.   If B=>83 And B=<93
  1876.     B=86
  1877.   Endif
  1878.   '
  1879.   Gosub Set_square
  1880.   '
  1881.   Put A-10,B-10,Mask$(X,Y),4
  1882.   Put A-10,B-10,Shape$(X,Y),6
  1883.   '
  1884.   Bmove Screen0%,Screen1%,32000
  1885.   Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  1886.   '
  1887. Return
  1888. ' -----------------------------------------------------------------------------
  1889. Procedure Which_false
  1890.   '
  1891.   If X=1
  1892.     Used_t=False
  1893.   Else
  1894.     If X=2
  1895.       Used_u=False
  1896.     Else
  1897.       If X=3
  1898.         Used_z=False
  1899.       Else
  1900.         If X=4
  1901.           Used_p=False
  1902.         Else
  1903.           If X=5
  1904.             Used_w=False
  1905.           Else
  1906.             If X=6
  1907.               Used_v=False
  1908.             Else
  1909.               If X=7
  1910.                 Used_x=False
  1911.               Else
  1912.                 If X=8
  1913.                   Used_f=False
  1914.                 Else
  1915.                   If X=9
  1916.                     Used_y=False
  1917.                   Else
  1918.                     If X=10
  1919.                       Used_l=False
  1920.                     Else
  1921.                       If X=11
  1922.                         Used_s=False
  1923.                       Else
  1924.                         If X=12
  1925.                           Used_i=False
  1926.                         Endif
  1927.                       Endif
  1928.                     Endif
  1929.                   Endif
  1930.                 Endif
  1931.               Endif
  1932.             Endif
  1933.           Endif
  1934.         Endif
  1935.       Endif
  1936.     Endif
  1937.   Endif
  1938.   '
  1939. Return
  1940. ' -----------------------------------------------------------------------------
  1941. Procedure Start_up_1
  1942.   '
  1943.   Defmouse 2
  1944.   Amt%=32767
  1945.   Let Screen0$=String$(Amt%,0)
  1946.   Let Screen1$=String$(Amt%,0)
  1947.   Let Screen2$=String$(Amt%,0)
  1948.   Oscreen%=Xbios(2)
  1949.   '
  1950.   Screen0%=(Lpeek(Arrptr(Screen0$)) And &HFFFF00)+256  ! original screen
  1951.   Screen1%=(Lpeek(Arrptr(Screen1$)) And &HFFFF00)+256  ! screens 1&2 switch in
  1952.   Screen2%=(Lpeek(Arrptr(Screen2$)) And &HFFFF00)+256  ! and out of the display
  1953.   '
  1954. Return
  1955. ' ----------------------------------------------------------------------------
  1956. Procedure Start_up_2
  1957.   '
  1958.   If Exist("*.*")
  1959.   Endif
  1960.   Bload "STUMGRID",Screen0%-34
  1961.   Void Xbios(5,L:Screen0%,L:-1,-1)
  1962.   Get 0,0,202,32,Grid320$
  1963.   Get 0,32,122,84,Grid512$
  1964.   Get 0,84,102,146,Grid610$
  1965.   Get 0,146,152,188,Grid415$
  1966.   Get 152,106,234,188,Grid88$
  1967.   Get 129,61,145,140,Which_88$
  1968.   Get 242,65,275,154,Title_virt$
  1969.   Get 125,35,298,56,Title_horiz$
  1970.   '
  1971.   Bload "MASK1",Screen0%-34
  1972.   '
  1973.   Get 0,0,28,28,Mask$(1,1)
  1974.   Get 30,0,58,28,Mask$(1,2)
  1975.   Get 60,0,88,28,Mask$(1,3)
  1976.   Get 90,0,118,28,Mask$(1,4)
  1977.   Get 120,0,148,28,Mask$(1,5)
  1978.   Get 150,0,178,28,Mask$(1,6)
  1979.   Get 180,0,208,28,Mask$(1,7)
  1980.   Get 210,0,238,28,Mask$(1,8)
  1981.   '
  1982.   Get 0,30,18,58,Mask$(2,1)
  1983.   Get 30,30,58,48,Mask$(2,2)
  1984.   Get 70,30,88,58,Mask$(2,3)
  1985.   Get 90,40,118,58,Mask$(2,4)
  1986.   Get 130,30,148,58,Mask$(2,5)
  1987.   Get 150,40,178,58,Mask$(2,6)
  1988.   Get 180,30,198,58,Mask$(2,7)
  1989.   Get 210,30,238,48,Mask$(2,8)
  1990.   '
  1991.   Get 0,60,28,88,Mask$(3,1)
  1992.   Get 30,60,58,88,Mask$(3,2)
  1993.   Get 60,60,88,88,Mask$(3,3)
  1994.   Get 90,60,118,88,Mask$(3,4)
  1995.   Get 120,60,148,88,Mask$(3,5)
  1996.   Get 150,60,178,88,Mask$(3,6)
  1997.   Get 180,60,208,88,Mask$(3,7)
  1998.   Get 210,60,238,88,Mask$(3,8)
  1999.   '
  2000.   Get 0,90,18,118,Mask$(4,1)
  2001.   Get 30,90,58,108,Mask$(4,2)
  2002.   Get 70,90,88,118,Mask$(4,3)
  2003.   Get 90,100,118,118,Mask$(4,4)
  2004.   Get 130,90,148,118,Mask$(4,5)
  2005.   Get 150,100,178,118,Mask$(4,6)
  2006.   Get 180,90,198,118,Mask$(4,7)
  2007.   Get 210,90,238,108,Mask$(4,8)
  2008.   '
  2009.   Get 0,120,28,148,Mask$(5,1)
  2010.   Get 30,120,58,148,Mask$(5,2)
  2011.   Get 60,120,88,148,Mask$(5,3)
  2012.   Get 90,120,118,148,Mask$(5,4)
  2013.   Get 120,120,148,148,Mask$(5,5)
  2014.   Get 150,120,178,148,Mask$(5,6)
  2015.   Get 180,120,208,148,Mask$(5,7)
  2016.   Get 210,120,238,148,Mask$(5,8)
  2017.   '
  2018.   Get 0,150,28,178,Mask$(6,1)
  2019.   Get 30,150,58,178,Mask$(6,2)
  2020.   Get 60,150,88,178,Mask$(6,3)
  2021.   Get 90,150,118,178,Mask$(6,4)
  2022.   Get 120,150,148,178,Mask$(6,5)
  2023.   Get 150,150,178,178,Mask$(6,6)
  2024.   Get 180,150,208,178,Mask$(6,7)
  2025.   Get 210,150,238,178,Mask$(6,8)
  2026.   '
  2027.   Bload "MASK2",Screen0%-34
  2028.   '
  2029.   Get 0,0,28,28,Mask$(7,1)
  2030.   Get 30,0,58,28,Mask$(7,2)
  2031.   Get 60,0,88,28,Mask$(7,3)
  2032.   Get 90,0,118,28,Mask$(7,4)
  2033.   Get 120,0,148,28,Mask$(7,5)
  2034.   Get 150,0,178,28,Mask$(7,6)
  2035.   Get 180,0,208,28,Mask$(7,7)
  2036.   Get 210,0,238,28,Mask$(7,8)
  2037.   '
  2038.   Get 0,30,28,58,Mask$(8,1)
  2039.   Get 30,30,58,58,Mask$(8,2)
  2040.   Get 60,30,88,58,Mask$(8,3)
  2041.   Get 90,30,118,58,Mask$(8,4)
  2042.   Get 120,30,148,58,Mask$(8,5)
  2043.   Get 150,30,178,58,Mask$(8,6)
  2044.   Get 180,30,208,58,Mask$(8,7)
  2045.   Get 210,30,238,58,Mask$(8,8)
  2046.   '
  2047.   Get 0,60,18,98,Mask$(9,1)
  2048.   Get 40,60,78,78,Mask$(9,2)
  2049.   Get 100,60,118,98,Mask$(9,3)
  2050.   Get 120,80,158,98,Mask$(9,4)
  2051.   Get 180,60,198,98,Mask$(9,5)
  2052.   Get 200,80,238,98,Mask$(9,6)
  2053.   Get 240,60,258,98,Mask$(9,7)
  2054.   Get 280,60,318,78,Mask$(9,8)
  2055.   '
  2056.   Get 0,100,18,138,Mask$(10,1)
  2057.   Get 40,100,78,118,Mask$(10,2)
  2058.   Get 100,100,118,138,Mask$(10,3)
  2059.   Get 120,120,158,138,Mask$(10,4)
  2060.   Get 180,100,198,138,Mask$(10,5)
  2061.   Get 200,120,238,138,Mask$(10,6)
  2062.   Get 240,100,258,138,Mask$(10,7)
  2063.   Get 280,100,318,118,Mask$(10,8)
  2064.   '
  2065.   Get 0,140,18,178,Mask$(11,1)
  2066.   Get 40,140,78,158,Mask$(11,2)
  2067.   Get 100,140,118,178,Mask$(11,3)
  2068.   Get 120,160,158,178,Mask$(11,4)
  2069.   Get 180,140,198,178,Mask$(11,5)
  2070.   Get 200,160,238,178,Mask$(11,6)
  2071.   Get 240,140,258,178,Mask$(11,7)
  2072.   Get 280,140,318,158,Mask$(11,8)
  2073.   '
  2074.   Get 0,180,48,188,Mask$(12,1)
  2075.   Get 240,0,248,48,Mask$(12,2)
  2076.   Mask$(12,3)=Mask$(12,1)
  2077.   Mask$(12,5)=Mask$(12,1)
  2078.   Mask$(12,7)=Mask$(12,1)
  2079.   Mask$(12,4)=Mask$(12,2)
  2080.   Mask$(12,6)=Mask$(12,2)
  2081.   Mask$(12,8)=Mask$(12,2)
  2082.   '
  2083.   Bload "SHAPE1",Screen0%-34
  2084.   '
  2085.   Get 0,0,28,28,Shape$(1,1)
  2086.   Get 30,0,58,28,Shape$(1,2)
  2087.   Get 60,0,88,28,Shape$(1,3)
  2088.   Get 90,0,118,28,Shape$(1,4)
  2089.   Get 120,0,148,28,Shape$(1,5)
  2090.   Get 150,0,178,28,Shape$(1,6)
  2091.   Get 180,0,208,28,Shape$(1,7)
  2092.   Get 210,0,238,28,Shape$(1,8)
  2093.   '
  2094.   Get 0,30,18,58,Shape$(2,1)
  2095.   Get 30,30,58,48,Shape$(2,2)
  2096.   Get 70,30,88,58,Shape$(2,3)
  2097.   Get 90,40,118,58,Shape$(2,4)
  2098.   Get 130,30,148,58,Shape$(2,5)
  2099.   Get 150,40,178,58,Shape$(2,6)
  2100.   Get 180,30,198,58,Shape$(2,7)
  2101.   Get 210,30,238,48,Shape$(2,8)
  2102.   '
  2103.   Get 0,60,28,88,Shape$(3,1)
  2104.   Get 30,60,58,88,Shape$(3,2)
  2105.   Get 60,60,88,88,Shape$(3,3)
  2106.   Get 90,60,118,88,Shape$(3,4)
  2107.   Get 120,60,148,88,Shape$(3,5)
  2108.   Get 150,60,178,88,Shape$(3,6)
  2109.   Get 180,60,208,88,Shape$(3,7)
  2110.   Get 210,60,238,88,Shape$(3,8)
  2111.   '
  2112.   Get 0,90,18,118,Shape$(4,1)
  2113.   Get 30,90,58,108,Shape$(4,2)
  2114.   Get 70,90,88,118,Shape$(4,3)
  2115.   Get 90,100,118,118,Shape$(4,4)
  2116.   Get 130,90,148,118,Shape$(4,5)
  2117.   Get 150,100,178,118,Shape$(4,6)
  2118.   Get 180,90,198,118,Shape$(4,7)
  2119.   Get 210,90,238,108,Shape$(4,8)
  2120.   '
  2121.   Get 0,120,28,148,Shape$(5,1)
  2122.   Get 30,120,58,148,Shape$(5,2)
  2123.   Get 60,120,88,148,Shape$(5,3)
  2124.   Get 90,120,118,148,Shape$(5,4)
  2125.   Get 120,120,148,148,Shape$(5,5)
  2126.   Get 150,120,178,148,Shape$(5,6)
  2127.   Get 180,120,208,148,Shape$(5,7)
  2128.   Get 210,120,238,148,Shape$(5,8)
  2129.   '
  2130.   Get 0,150,28,178,Shape$(6,1)
  2131.   Get 30,150,58,178,Shape$(6,2)
  2132.   Get 60,150,88,178,Shape$(6,3)
  2133.   Get 90,150,118,178,Shape$(6,4)
  2134.   Get 120,150,148,178,Shape$(6,5)
  2135.   Get 150,150,178,178,Shape$(6,6)
  2136.   Get 180,150,208,178,Shape$(6,7)
  2137.   Get 210,150,238,178,Shape$(6,8)
  2138.   '
  2139.   Bload "SHAPE2",Screen0%-34
  2140.   '
  2141.   Get 0,0,28,28,Shape$(7,1)
  2142.   Get 30,0,58,28,Shape$(7,2)
  2143.   Get 60,0,88,28,Shape$(7,3)
  2144.   Get 90,0,118,28,Shape$(7,4)
  2145.   Get 120,0,148,28,Shape$(7,5)
  2146.   Get 150,0,178,28,Shape$(7,6)
  2147.   Get 180,0,208,28,Shape$(7,7)
  2148.   Get 210,0,238,28,Shape$(7,8)
  2149.   '
  2150.   Get 0,30,28,58,Shape$(8,1)
  2151.   Get 30,30,58,58,Shape$(8,2)
  2152.   Get 60,30,88,58,Shape$(8,3)
  2153.   Get 90,30,118,58,Shape$(8,4)
  2154.   Get 120,30,148,58,Shape$(8,5)
  2155.   Get 150,30,178,58,Shape$(8,6)
  2156.   Get 180,30,208,58,Shape$(8,7)
  2157.   Get 210,30,238,58,Shape$(8,8)
  2158.   '
  2159.   Get 0,60,18,98,Shape$(9,1)
  2160.   Get 40,60,78,78,Shape$(9,2)
  2161.   Get 100,60,118,98,Shape$(9,3)
  2162.   Get 120,80,158,98,Shape$(9,4)
  2163.   Get 180,60,198,98,Shape$(9,5)
  2164.   Get 200,80,238,98,Shape$(9,6)
  2165.   Get 240,60,258,98,Shape$(9,7)
  2166.   Get 280,60,318,78,Shape$(9,8)
  2167.   '
  2168.   Get 0,100,18,138,Shape$(10,1)
  2169.   Get 40,100,78,118,Shape$(10,2)
  2170.   Get 100,100,118,138,Shape$(10,3)
  2171.   Get 120,120,158,138,Shape$(10,4)
  2172.   Get 180,100,198,138,Shape$(10,5)
  2173.   Get 200,120,238,138,Shape$(10,6)
  2174.   Get 240,100,258,138,Shape$(10,7)
  2175.   Get 280,100,318,118,Shape$(10,8)
  2176.   '
  2177.   Get 0,140,18,178,Shape$(11,1)
  2178.   Get 40,140,78,158,Shape$(11,2)
  2179.   Get 100,140,118,178,Shape$(11,3)
  2180.   Get 120,160,158,178,Shape$(11,4)
  2181.   Get 180,140,198,178,Shape$(11,5)
  2182.   Get 200,160,238,178,Shape$(11,6)
  2183.   Get 240,140,258,178,Shape$(11,7)
  2184.   Get 280,140,318,158,Shape$(11,8)
  2185.   '
  2186.   Get 0,180,48,188,Shape$(12,1)
  2187.   Get 240,0,248,48,Shape$(12,2)
  2188.   Shape$(12,3)=Shape$(12,1)
  2189.   Shape$(12,5)=Shape$(12,1)
  2190.   Shape$(12,7)=Shape$(12,1)
  2191.   Shape$(12,4)=Shape$(12,2)
  2192.   Shape$(12,6)=Shape$(12,2)
  2193.   Shape$(12,8)=Shape$(12,2)
  2194.   '
  2195.   '
  2196.   Bload "STUMBACK",Screen0%-34
  2197.   Sget Blank$
  2198.   Get 54,39,105,90,Hole$
  2199.   Get 0,92,53,145,Blanksquare$
  2200.   Get 269,0,314,16,Rotate$
  2201.   Get 271,2,316,18,Rotate1$
  2202.   Get 269,22,314,38,Flip$
  2203.   Get 271,24,316,40,Flip1$
  2204.   Get 269,43,314,60,Twist$
  2205.   Get 271,45,316,62,Twist1$
  2206.   Get 269,68,314,84,Happy$
  2207.   Get 271,70,316,86,Happy1$
  2208.   '
  2209.   Get 2,0,47,12,B320$
  2210.   Get 4,2,49,14,B3201$
  2211.   Get 2,18,47,30,B415$
  2212.   Get 4,20,49,32,B4151$
  2213.   Get 2,36,47,48,B512$
  2214.   Get 4,38,49,50,B5121$
  2215.   Get 2,55,47,67,B610$
  2216.   Get 4,57,49,69,B6101$
  2217.   Get 2,73,47,85,B88$
  2218.   Get 4,75,49,87,B881$
  2219.   '
  2220.   Put 73,0,Title_horiz$
  2221.   Put 98,30,Grid512$,3           ! Initialise game with
  2222.   Grid=3                         !     5x12 grid
  2223.   '
  2224. Return
  2225. ' -----------------------------------------------------------------------------
  2226. Procedure Which_shape(Pc)
  2227.   '
  2228.   If Pc<>0 Or Pc<>1 Or Pc<>8 Or Pc<>9
  2229.     '
  2230.     If Pc=2
  2231.       X=7
  2232.       Used_x=False
  2233.       Squarea=212
  2234.       Squareb=92
  2235.       Gosub Re_map_grid
  2236.       Used_x=True
  2237.       Gosub Make_it_move(7,Present_x)
  2238.     Endif
  2239.     '
  2240.     If Pc=3
  2241.       X=6
  2242.       Used_v=False
  2243.       Squarea=0
  2244.       Squareb=145
  2245.       Gosub Re_map_grid
  2246.       Used_v=True
  2247.       Gosub Make_it_move(6,Present_v)
  2248.     Endif
  2249.     '
  2250.     If Pc=4
  2251.       X=5
  2252.       Used_w=False
  2253.       Squarea=159
  2254.       Squareb=92
  2255.       Gosub Re_map_grid
  2256.       Used_w=True
  2257.       Gosub Make_it_move(5,Present_w)
  2258.     Endif
  2259.     '
  2260.     If Pc=5
  2261.       X=12
  2262.       Used_i=False
  2263.       Squarea=106
  2264.       Squareb=145
  2265.       Gosub Re_map_grid
  2266.       Used_i=True
  2267.       Gosub Make_it_move(12,Present_i)
  2268.     Endif
  2269.     '
  2270.     If Pc=6
  2271.       X=3
  2272.       Used_z=False
  2273.       Squarea=0
  2274.       Squareb=92
  2275.       Gosub Re_map_grid
  2276.       Used_z=True
  2277.       Gosub Make_it_move(3,Present_z)
  2278.     Endif
  2279.     '
  2280.     If Pc=7
  2281.       X=4
  2282.       Used_p=False
  2283.       Squarea=106
  2284.       Squareb=92
  2285.       Gosub Re_map_grid
  2286.       Used_p=True
  2287.       Gosub Make_it_move(4,Present_p)
  2288.     Endif
  2289.     '
  2290.     If Pc=10
  2291.       X=1
  2292.       Used_t=False
  2293.       Squarea=265
  2294.       Squareb=92
  2295.       Gosub Re_map_grid
  2296.       Used_t=True
  2297.       Gosub Make_it_move(1,Present_t)
  2298.     Endif
  2299.     '
  2300.     If Pc=11
  2301.       X=8
  2302.       Used_f=False
  2303.       Squarea=265
  2304.       Squareb=145
  2305.       Gosub Re_map_grid
  2306.       Used_f=True
  2307.       Gosub Make_it_move(8,Present_f)
  2308.     Endif
  2309.     '
  2310.     If Pc=12
  2311.       X=10
  2312.       Used_l=False
  2313.       Squarea=53
  2314.       Squareb=145
  2315.       Gosub Re_map_grid
  2316.       Used_l=True
  2317.       Gosub Make_it_move(10,Present_l)
  2318.     Endif
  2319.     '
  2320.     If Pc=13
  2321.       X=11
  2322.       Used_s=False
  2323.       Squarea=212
  2324.       Squareb=145
  2325.       Gosub Re_map_grid
  2326.       Used_s=True
  2327.       Gosub Make_it_move(11,Present_s)
  2328.     Endif
  2329.     '
  2330.     If Pc=14
  2331.       X=2
  2332.       Used_u=False
  2333.       Squarea=53
  2334.       Squareb=92
  2335.       Gosub Re_map_grid
  2336.       Used_u=True
  2337.       Gosub Make_it_move(2,Present_u)
  2338.     Endif
  2339.     '
  2340.     If Pc=15
  2341.       X=9
  2342.       Used_y=False
  2343.       Squarea=159
  2344.       Squareb=145
  2345.       Gosub Re_map_grid
  2346.       Used_y=True
  2347.       Gosub Make_it_move(9,Present_y)
  2348.     Endif
  2349.     '
  2350.   Endif
  2351.   '
  2352. Return
  2353. '
  2354. Procedure Replace_square_on_grid(X,Y,Am,Bm)
  2355.   '
  2356.   Put Am-10,Bm-10,Mask$(X,Y),4
  2357.   Put Am-10,Bm-10,Shape$(X,Y),6
  2358.   '
  2359. Return
  2360. '
  2361. Procedure Set_square
  2362.   '
  2363.   If X=1
  2364.     At=A
  2365.     Bt=B
  2366.   Endif
  2367.   '
  2368.   If X=2
  2369.     Au=A
  2370.     Bu=B
  2371.   Endif
  2372.   '
  2373.   If X=3
  2374.     Az=A
  2375.     Bz=B
  2376.   Endif
  2377.   '
  2378.   If X=4
  2379.     Ap=A
  2380.     Bp=B
  2381.   Endif
  2382.   '
  2383.   If X=5
  2384.     Aw=A
  2385.     Bw=B
  2386.   Endif
  2387.   '
  2388.   If X=6
  2389.     Av=A
  2390.     Bv=B
  2391.   Endif
  2392.   '
  2393.   If X=7
  2394.     Ax=A
  2395.     Bx=B
  2396.   Endif
  2397.   '
  2398.   If X=8
  2399.     Af=A
  2400.     Bf=B
  2401.   Endif
  2402.   '
  2403.   If X=9
  2404.     Ay=A
  2405.     By=B
  2406.   Endif
  2407.   '
  2408.   If X=10
  2409.     Al=A
  2410.     Bl=B
  2411.   Endif
  2412.   '
  2413.   If X=11
  2414.     As=A
  2415.     Bs=B
  2416.   Endif
  2417.   '
  2418.   If X=12
  2419.     Ai=A
  2420.     Bi=B
  2421.   Endif
  2422.   '
  2423. Return
  2424. '
  2425. Procedure Re_map_grid
  2426.   '
  2427.   Void Xbios(5,L:Screen0%,L:-1,-1)
  2428.   If Grid=1
  2429.     Put 58,41,Grid320$,3
  2430.   Endif
  2431.   '
  2432.   If Grid=2
  2433.     Put 84,36,Grid415$,3
  2434.   Endif
  2435.   '
  2436.   If Grid=3
  2437.     Put 98,30,Grid512$,3
  2438.   Endif
  2439.   '
  2440.   If Grid=4
  2441.     Put 108,25,Grid610$,3
  2442.   Endif
  2443.   '
  2444.   If Grid=5
  2445.     Put 118,4,Grid88$,3
  2446.   Endif
  2447.   '
  2448.   If Grid=5
  2449.     If Black_bits=1
  2450.       Deffill 1,2,8
  2451.       Fill 121,7
  2452.       Fill 191,7
  2453.       Fill 121,77
  2454.       Fill 191,77
  2455.     Endif
  2456.     '
  2457.     If Black_bits=2
  2458.       Deffill 1,2,8
  2459.       Fill 131,17
  2460.       Fill 181,17
  2461.       Fill 131,67
  2462.       Fill 181,67
  2463.     Endif
  2464.     '
  2465.     If Black_bits=3
  2466.       Deffill 1,2,8
  2467.       Fill 141,27
  2468.       Fill 171,27
  2469.       Fill 141,57
  2470.       Fill 171,57
  2471.     Endif
  2472.     '
  2473.     If Black_bits=4
  2474.       Deffill 1,2,8
  2475.       Fill 151,37
  2476.       Fill 161,37
  2477.       Fill 151,47
  2478.       Fill 161,47
  2479.     Endif
  2480.   Endif
  2481.   '
  2482.   If Used_t=True
  2483.     Gosub Replace_square_on_grid(1,Present_t,At,Bt)
  2484.   Endif
  2485.   '
  2486.   If Used_u=True
  2487.     Gosub Replace_square_on_grid(2,Present_u,Au,Bu)
  2488.   Endif
  2489.   '
  2490.   If Used_z=True
  2491.     Gosub Replace_square_on_grid(3,Present_z,Az,Bz)
  2492.   Endif
  2493.   '
  2494.   If Used_p=True
  2495.     Gosub Replace_square_on_grid(4,Present_p,Ap,Bp)
  2496.   Endif
  2497.   '
  2498.   If Used_w=True
  2499.     Gosub Replace_square_on_grid(5,Present_w,Aw,Bw)
  2500.   Endif
  2501.   '
  2502.   If Used_v=True
  2503.     Gosub Replace_square_on_grid(6,Present_v,Av,Bv)
  2504.   Endif
  2505.   '
  2506.   If Used_x=True
  2507.     Gosub Replace_square_on_grid(7,Present_x,Ax,Bx)
  2508.   Endif
  2509.   '
  2510.   If Used_f=True
  2511.     Gosub Replace_square_on_grid(8,Present_f,Af,Bf)
  2512.   Endif
  2513.   '
  2514.   If Used_y=True
  2515.     Gosub Replace_square_on_grid(9,Present_y,Ay,By)
  2516.   Endif
  2517.   '
  2518.   If Used_l=True
  2519.     Gosub Replace_square_on_grid(10,Present_l,Al,Bl)
  2520.   Endif
  2521.   '
  2522.   If Used_s=True
  2523.     Gosub Replace_square_on_grid(11,Present_s,As,Bs)
  2524.   Endif
  2525.   '
  2526.   If Used_i=True
  2527.     Gosub Replace_square_on_grid(12,Present_i,Ai,Bi)
  2528.   Endif
  2529.   '
  2530.   Bmove Screen0%,Screen2%,32000
  2531.   Void Xbios(5,L:Screen2%,L:Screen2%,-1)
  2532.   '
  2533. Return
  2534. '
  2535. Procedure Not_low
  2536.   '
  2537.   If Rez=1
  2538.     If Exist("MED.MSG")
  2539.       Open "I",#1,"MED.MSG"
  2540.       Med_splat$=Input$(5630,#1)
  2541.       Close #1
  2542.       A=0
  2543.       B=0
  2544.       Repeat
  2545.         Void Xbios(5,L:Screen1%,L:-1,-1)
  2546.         If A>(650-310)
  2547.           Let Direction_x=True
  2548.         Endif
  2549.         If A<1
  2550.           Let Direction_x=False
  2551.         Endif
  2552.         If B>(200-80)
  2553.           Let Direction_y=True
  2554.         Endif
  2555.         If B<1
  2556.           Let Direction_y=False
  2557.         Endif
  2558.         If Direction_x=True
  2559.           A=A-5
  2560.         Endif
  2561.         If Direction_x=False
  2562.           A=A+5
  2563.         Endif
  2564.         If Direction_y=True
  2565.           B=B-5
  2566.         Endif
  2567.         If Direction_y=False
  2568.           B=B+5
  2569.         Endif
  2570.         Put A,B,Med_splat$,3
  2571.         Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  2572.         Bmove Screen1%,Screen2%,32000
  2573.         '
  2574.         Void Xbios(5,L:Screen2%,L:-1,-1)
  2575.         If A>(650-310)
  2576.           Let Direction_x=True
  2577.         Endif
  2578.         If A<1
  2579.           Let Direction_x=False
  2580.         Endif
  2581.         If B>(200-80)
  2582.           Let Direction_y=True
  2583.         Endif
  2584.         If B<1
  2585.           Let Direction_y=False
  2586.         Endif
  2587.         If Direction_x=True
  2588.           A=A-5
  2589.         Endif
  2590.         If Direction_x=False
  2591.           A=A+5
  2592.         Endif
  2593.         If Direction_y=True
  2594.           B=B-5
  2595.         Endif
  2596.         If Direction_y=False
  2597.           B=B+5
  2598.         Endif
  2599.         Put A,B,Med_splat$,3
  2600.         Void Xbios(5,L:Screen2%,L:Screen2%,-1)
  2601.         Bmove Screen2%,Screen1%,32000
  2602.       Until Inkey$<>""
  2603.       Void Xbios(5,L:Oscreen%,L:Oscreen%,-1)
  2604.     Else
  2605.       Alert 1,"This program only runs|in low resolution.",1," Darn ",D
  2606.     Endif
  2607.     End
  2608.     '
  2609.   Endif
  2610.   '
  2611.   If Rez=2
  2612.     If Exist("HIGH.MSG")
  2613.       Open "I",#1,"HIGH.MSG"
  2614.       High_splat$=Input$(4518,#1)
  2615.       Close #1
  2616.       A=0
  2617.       B=0
  2618.       Repeat
  2619.         Pause 1.5
  2620.         Void Xbios(5,L:Screen1%,L:-1,-1)
  2621.         If A>390
  2622.           Let Direction_x=True
  2623.         Endif
  2624.         If A<1
  2625.           Let Direction_x=False
  2626.         Endif
  2627.         If B>(400-150)
  2628.           Let Direction_y=True
  2629.         Endif
  2630.         If B<1
  2631.           Let Direction_y=False
  2632.         Endif
  2633.         If Direction_x=True
  2634.           A=A-10
  2635.         Endif
  2636.         If Direction_x=False
  2637.           A=A+10
  2638.         Endif
  2639.         If Direction_y=True
  2640.           B=B-10
  2641.         Endif
  2642.         If Direction_y=False
  2643.           B=B+10
  2644.         Endif
  2645.         Put A,B,High_splat$,3
  2646.         Void Xbios(5,L:Screen1%,L:Screen1%,-1)
  2647.         Bmove Screen1%,Screen2%,32000
  2648.         '
  2649.         Pause 1.5
  2650.         Void Xbios(5,L:Screen2%,L:-1,-1)
  2651.         If A>390
  2652.           Let Direction_x=True
  2653.         Endif
  2654.         If A<1
  2655.           Let Direction_x=False
  2656.         Endif
  2657.         If B>(400-150)
  2658.           Let Direction_y=True
  2659.         Endif
  2660.         If B<1
  2661.           Let Direction_y=False
  2662.         Endif
  2663.         If Direction_x=True
  2664.           A=A-10
  2665.         Endif
  2666.         If Direction_x=False
  2667.           A=A+10
  2668.         Endif
  2669.         If Direction_y=True
  2670.           B=B-10
  2671.         Endif
  2672.         If Direction_y=False
  2673.           B=B+10
  2674.         Endif
  2675.         Put A,B,High_splat$,3
  2676.         Void Xbios(5,L:Screen2%,L:Screen2%,-1)
  2677.         Bmove Screen2%,Screen1%,32000
  2678.       Until Inkey$<>""
  2679.       Void Xbios(5,L:Oscreen%,L:Oscreen%,-1)
  2680.     Else
  2681.       Alert 1,"This program only runs in|low resolution.",1," Darn ",D
  2682.     Endif
  2683.     End
  2684.     '
  2685.   Endif
  2686.   '
  2687. Return
  2688. '
  2689. '
  2690. Procedure Title_loader
  2691.   '
  2692.   Setcolor 0,7,7,7
  2693.   Setcolor 1,7,0,0
  2694.   Setcolor 2,0,7,0
  2695.   Setcolor 3,7,7,0
  2696.   Setcolor 4,3,3,7
  2697.   Setcolor 5,7,0,7
  2698.   Setcolor 6,0,7,7
  2699.   Setcolor 7,6,6,6
  2700.   Setcolor 8,4,4,4
  2701.   Setcolor 9,7,4,0
  2702.   Setcolor 10,4,0,4
  2703.   Setcolor 11,5,1,0
  2704.   Setcolor 12,0,4,1
  2705.   Setcolor 13,5,4,0
  2706.   Setcolor 14,3,5,7
  2707.   Setcolor 15,0,0,0
  2708.   '
  2709.   Bload "STUMBLE",Screen2%-34
  2710.   Void Xbios(5,L:Screen2%,L:Screen2%,-1)
  2711.   '
  2712. Return
  2713. '
  2714. Procedure Check_completed
  2715.   '
  2716.   If Used_t=True
  2717.     If Used_u=True
  2718.       If Used_z=True
  2719.         If Used_p=True
  2720.           If Used_w=True
  2721.             If Used_v=True
  2722.               If Used_x=True
  2723.                 If Used_f=True
  2724.                   If Used_y=True
  2725.                     If Used_l=True
  2726.                       If Used_s=True
  2727.                         If Used_i=True
  2728.                           Gosub Check_true_colours
  2729.                         Endif
  2730.                       Endif
  2731.                     Endif
  2732.                   Endif
  2733.                 Endif
  2734.               Endif
  2735.             Endif
  2736.           Endif
  2737.         Endif
  2738.       Endif
  2739.     Endif
  2740.   Endif
  2741.   '
  2742. Return
  2743. '
  2744. Procedure Check_true_colours
  2745.   '
  2746.   If Grid=1
  2747.     Found_one=False
  2748.     For J=45 To 65 Step 10
  2749.       For I=65 To 255 Step 10
  2750.         Colour_found=Point(I,J)
  2751.         If Colour_found=0
  2752.           Found_one=True
  2753.         Endif
  2754.       Next I
  2755.     Next J
  2756.     If Found_one=True
  2757.       Alert 1,"| |Better luck|next time...",1," Ho-Hum ",Z
  2758.     Endif
  2759.     '
  2760.     If Found_one=False
  2761.       Alert 1," Well Done !!| Would you like a| printed record| of it ?",1," Yes | No ",Z
  2762.       If Z=1
  2763.         Gosub Hard_copy
  2764.       Endif
  2765.     Endif
  2766.     '
  2767.   Endif
  2768.   '
  2769.   '
  2770.   If Grid=2
  2771.     Found_one=False
  2772.     For J=42 To 72 Step 10
  2773.       For I=90 To 230 Step 10
  2774.         Colour_found=Point(I,J)
  2775.         If Colour_found=0
  2776.           Found_one=True
  2777.         Endif
  2778.       Next I
  2779.     Next J
  2780.     If Found_one=True
  2781.       Alert 1,"| |Better luck|next time...",1," Ho-Hum ",Z
  2782.     Endif
  2783.     '
  2784.     If Found_one=False
  2785.       Alert 1," Well Done !!| Would you like a| printed record| of it ?",1," Yes | No ",Z
  2786.       If Z=1
  2787.         Gosub Hard_copy
  2788.       Endif
  2789.     Endif
  2790.     '
  2791.   Endif
  2792.   '
  2793.   If Grid=3
  2794.     Found_one=False
  2795.     For J=36 To 76 Step 10
  2796.       For I=104 To 214 Step 10
  2797.         Colour_found=Point(I,J)
  2798.         If Colour_found=0
  2799.           Found_one=True
  2800.         Endif
  2801.       Next I
  2802.     Next J
  2803.     If Found_one=True
  2804.       Alert 1,"| |Better luck|next time...",1," Ho-Hum ",Z
  2805.     Endif
  2806.     '
  2807.     If Found_one=False
  2808.       Alert 1," Well Done !!| Would you like a| printed record| of it ?",1," Yes | No ",Z
  2809.       If Z=1
  2810.         Gosub Hard_copy
  2811.       Endif
  2812.     Endif
  2813.     '
  2814.   Endif
  2815.   '
  2816.   If Grid=4
  2817.     Found_one=False
  2818.     For J=30 To 80 Step 10
  2819.       For I=114 To 204 Step 10
  2820.         Colour_found=Point(I,J)
  2821.         If Colour_found=0
  2822.           Found_one=True
  2823.         Endif
  2824.       Next I
  2825.     Next J
  2826.     If Found_one=True
  2827.       Alert 1,"| |Better luck|next time...",1," Ho-Hum ",Z
  2828.     Endif
  2829.     '
  2830.     If Found_one=False
  2831.       Alert 1," Well Done !!| Would you like a| printed record| of it ?",1," Yes | No ",Z
  2832.       If Z=1
  2833.         Gosub Hard_copy
  2834.       Endif
  2835.     Endif
  2836.     '
  2837.   Endif
  2838.   '
  2839.   If Grid=5
  2840.     Found_one=False
  2841.     For J=10 To 80 Step 10
  2842.       For I=125 To 195 Step 10
  2843.         Colour_found=Point(I,J)
  2844.         If Colour_found=0
  2845.           Found_one=True
  2846.         Endif
  2847.       Next I
  2848.     Next J
  2849.     If Found_one=True
  2850.       Alert 1,"| |Better luck|next time...",1," Ho-Hum ",Z
  2851.     Endif
  2852.     '
  2853.     If Found_one=False
  2854.       Alert 1," Well Done !!| Would you like a| printed record| of it ?",1," Yes | No ",Z
  2855.       If Z=1
  2856.         Gosub Hard_copy
  2857.       Endif
  2858.     Endif
  2859.     '
  2860.   Endif
  2861.   '
  2862. Return
  2863. '
  2864. Procedure Hard_copy
  2865.   '
  2866.   Alert 3," WARNING| If your printer is not| ON LINE there will be| a 30 second delay.",1,"Print|Cancel",Z
  2867.   '
  2868.   If Z=1
  2869.     If Grid=1
  2870.       '
  2871.       Lprint "Stumbling Blocks (3x20)"
  2872.       Lprint
  2873.       For J=46 To 66 Step 10
  2874.         For I=64 To 254 Step 10
  2875.           Colour_found=Point(I,J)
  2876.           Gosub Sort_colour
  2877.           Lprint K$;" ";
  2878.           If I=254
  2879.             Lprint
  2880.             Lprint
  2881.           Endif
  2882.         Next I
  2883.       Next J
  2884.       '
  2885.     Endif
  2886.     '
  2887.     If Grid=2
  2888.       '
  2889.       Lprint "Stumbling Blocks (4x15)"
  2890.       Lprint
  2891.       For J=40 To 70 Step 10
  2892.         For I=90 To 230 Step 10
  2893.           Colour_found=Point(I,J)
  2894.           Gosub Sort_colour
  2895.           Lprint K$;" ";
  2896.           If I=230
  2897.             Lprint
  2898.             Lprint
  2899.           Endif
  2900.         Next I
  2901.       Next J
  2902.       '
  2903.     Endif
  2904.     '
  2905.     '
  2906.     If Grid=3
  2907.       '
  2908.       Lprint "Stumbling Blocks (5x12)"
  2909.       Lprint
  2910.       For J=36 To 76 Step 10
  2911.         For I=104 To 214 Step 10
  2912.           Colour_found=Point(I,J)
  2913.           Gosub Sort_colour
  2914.           Lprint K$;" ";
  2915.           If I=214
  2916.             Lprint
  2917.             Lprint
  2918.           Endif
  2919.         Next I
  2920.       Next J
  2921.       '
  2922.     Endif
  2923.     '
  2924.     If Grid=4
  2925.       '
  2926.       Lprint "Stumbling Blocks (6x10)"
  2927.       Lprint
  2928.       For J=30 To 80 Step 10
  2929.         For I=114 To 204 Step 10
  2930.           Colour_found=Point(I,J)
  2931.           Gosub Sort_colour
  2932.           Lprint K$;" ";
  2933.           If I=204
  2934.             Lprint
  2935.             Lprint
  2936.           Endif
  2937.         Next I
  2938.       Next J
  2939.       '
  2940.     Endif
  2941.     '
  2942.     If Grid=5
  2943.       '
  2944.       Lprint "Stumbling Blocks (8x8)"
  2945.       Lprint
  2946.       For J=10 To 80 Step 10
  2947.         For I=125 To 195 Step 10
  2948.           Colour_found=Point(I,J)
  2949.           Gosub Sort_colour
  2950.           Lprint K$;" ";
  2951.           If I=195
  2952.             Lprint
  2953.             Lprint
  2954.           Endif
  2955.         Next I
  2956.       Next J
  2957.       '
  2958.     Endif
  2959.     '
  2960.   Endif
  2961.   '
  2962. Return
  2963. '
  2964. Procedure Sort_colour
  2965.   '
  2966.   If Colour_found=1
  2967.     K$="*"
  2968.   Else
  2969.     If Colour_found=2
  2970.       K$="X"
  2971.     Else
  2972.       If Colour_found=3
  2973.         K$="V"
  2974.       Else
  2975.         If Colour_found=4
  2976.           K$="W"
  2977.         Else
  2978.           If Colour_found=5
  2979.             K$="I"
  2980.           Else
  2981.             If Colour_found=6
  2982.               K$="Z"
  2983.             Else
  2984.               If Colour_found=7
  2985.                 K$="P"
  2986.               Else
  2987.                 If Colour_found=10
  2988.                   K$="T"
  2989.                 Else
  2990.                   If Colour_found=11
  2991.                     K$="F"
  2992.                   Else
  2993.                     If Colour_found=12
  2994.                       K$="L"
  2995.                     Else
  2996.                       If Colour_found=13
  2997.                         K$="S"
  2998.                       Else
  2999.                         If Colour_found=14
  3000.                           K$="U"
  3001.                         Else
  3002.                           If Colour_found=15
  3003.                             K$="Y"
  3004.                           Endif
  3005.                         Endif
  3006.                       Endif
  3007.                     Endif
  3008.                   Endif
  3009.                 Endif
  3010.               Endif
  3011.             Endif
  3012.           Endif
  3013.         Endif
  3014.       Endif
  3015.     Endif
  3016.   Endif
  3017.   '
  3018. Return
  3019. Procedure Check_for_files
  3020.   Restore Stumble_files
  3021.   For I=1 To 7
  3022.     Read X$
  3023.     If Not Exist(X$)
  3024.       Alert 1,"The file "+X$+" must|be in the same directory as|STUMBLE.PRG.",1,"Abort",D
  3025.       End
  3026.     Endif
  3027.   Next I
  3028.   Stumble_files:
  3029.   Data STUMBLE,STUMGRID,STUMBACK,MASK1,MASK2,SHAPE1,SHAPE2
  3030.   Restore
  3031. Return
  3032. '
  3033. ' ------------- SAVE ORIGINAL COLOR PALETTE -----------------------
  3034. Procedure Save_pal
  3035.   '
  3036.   Dim Spalette%(16,3)
  3037.   '
  3038.   For Z%=0 To 15
  3039.     Dpoke Contrl,26
  3040.     Dpoke Contrl+2,0
  3041.     Dpoke Contrl+6,2
  3042.     Dpoke Intin,Z%
  3043.     Dpoke Intin+2,0
  3044.     Vdisys
  3045.     Spalette%(Z%,0)=Dpeek(Intout+2)
  3046.     Spalette%(Z%,1)=Dpeek(Intout+4)
  3047.     Spalette%(Z%,2)=Dpeek(Intout+6)
  3048.   Next Z%
  3049. Return
  3050. '
  3051. Procedure Restore_pal
  3052.   ' --------------------- RESTORES PALETTE -------------------
  3053.   ' Dimensions: Spalette%(16,3)
  3054.   '
  3055.   For Z%=0 To 15
  3056.     Dpoke Contrl,14
  3057.     Dpoke Contrl+2,0
  3058.     Dpoke Contrl+6,4
  3059.     Dpoke Intin,Z%
  3060.     Dpoke Intin+2,Spalette%(Z%,0)
  3061.     Dpoke Intin+4,Spalette%(Z%,1)
  3062.     Dpoke Intin+6,Spalette%(Z%,2)
  3063.     Vdisys
  3064.   Next Z%
  3065. Return
  3066. '
  3067. ' ---------------------------------------------------------------------------
  3068. '
  3069. '    and you thought you'd never make it to the end...
  3070. '
  3071.